This repository was archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
FF-295 - Upload Endpoint #100
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
54ce898
added mvn dep, idk why
qvalentin dfa9467
add login step to user edit
qvalentin 1343f97
add feature files for upload and upload preflight
qvalentin d2cf8b3
Added function skeleton
open-schnick cc8f92a
wip for preflight
open-schnick 1eae989
Fixed responses
open-schnick c68ca3e
Added FileHandling
open-schnick 710421e
Finished writing logic.
open-schnick 3e41259
kinda working steps
open-schnick 3023db8
Fixed preflight integration tests
open-schnick 0127323
Made preflight integration tests better
open-schnick aba0740
Kinda working upload
open-schnick a99cec6
removed todos, added recursive updating of timestamps
open-schnick 8751e2e
add basic upload step
qvalentin 23813e3
Added todos.
open-schnick a6d15df
make findAllByFileSystemIdInAndName case insensitive for name
qvalentin aa61d52
Merge remote-tracking branch 'origin/feature/uploadFeatureFiles' into…
open-schnick babe6b3
Fixed one bug
open-schnick 2297faa
Upload endpoint now returns correct values
open-schnick 753f84e
adapted tests.
open-schnick ac4738d
Bumped Version to v0.0.8
open-schnick 3591d4c
fixed tests, fixed workflows
open-schnick 1a67b50
fixed another bug
open-schnick 55a53bc
made file system contents request case insensitive
open-schnick 7100200
made file system contents request case insensitive (2)
open-schnick 07f29cc
Implemented Current Id as header for the content api
open-schnick 63ec286
added tests for response headers
open-schnick 137ad2f
Added one missing unit test.
open-schnick 63a02e0
small refactoring and added more integration tests.
open-schnick a415b24
fixed filesystemid bug, added different db port on dev and debug
open-schnick 7598ed7
Merge branch 'master' into feature/uploadFeatureFiles
open-schnick b24a75b
fix merge
open-schnick File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package de.filefighter.rest.domain.common; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class Pair<F, S> { | ||
private final F first; | ||
private final S second; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
interessting.