Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
55f5424
Implement routes
sapk Nov 18, 2017
80b3ce0
move to api/sdk and create model
sapk Nov 19, 2017
144ab60
Implement add + list
sapk Nov 19, 2017
3ef7315
List return 200 empty list no 404
sapk Nov 20, 2017
8ac2219
Add verify lfs lock api
sapk Nov 20, 2017
b3ad366
Add delete and start implementing auth control
sapk Nov 20, 2017
bcd3b39
Revert to code.gitea.io/sdk/gitea vendor
sapk Nov 21, 2017
74a04bc
Apply needed check for all lfs locks route
sapk Nov 21, 2017
82bab1b
Add simple tests
sapk Nov 21, 2017
cc66370
fix lint
sapk Nov 21, 2017
18eed10
Improve tests
sapk Nov 22, 2017
61606fc
Add delete test + fix
sapk Nov 22, 2017
3015595
Add lfs ascii header
sapk Nov 22, 2017
5b3b301
Various fixes from review + remove useless code + add more corner cas…
sapk Nov 24, 2017
b37282e
Remove repo link since only id is needed.
sapk Nov 24, 2017
3289ddb
Improve tests
sapk Nov 25, 2017
d529d02
Use TEXT column format for path + test
sapk Nov 25, 2017
51befcf
fix mispell
sapk Nov 25, 2017
ed57927
Use NewRequestWithJSON for POST tests
sapk Nov 25, 2017
bd3e9e7
Clean path
sapk Nov 26, 2017
caf92f9
Improve DB format
sapk Nov 26, 2017
2988c10
Revert uniquess repoid+path
sapk Nov 26, 2017
b6acea8
(Re)-setup uniqueness + max path length
sapk Nov 27, 2017
40b3cbb
Fixed TEXT in place of VARCHAR
sapk Nov 27, 2017
ca344b5
Settle back to maximum VARCHAR(3072)
sapk Nov 27, 2017
ab0a3eb
Let place for repoid in key
sapk Nov 27, 2017
d13c73e
Let place for repoid in key
sapk Nov 27, 2017
59565f4
Let place for repoid in key
sapk Nov 27, 2017
0180efa
Revert back
sapk Nov 27, 2017
a987dda
Merge branch 'master' into git-lfs-lock-api
sapk Nov 28, 2017
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
Prev Previous commit
Next Next commit
fix mispell
  • Loading branch information
sapk committed Nov 25, 2017
commit 51befcfcac757d099b42f6def3b482d88c33bbe6
2 changes: 1 addition & 1 deletion integrations/api_repo_lfs_locks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func TestAPILFSLocksLogged(t *testing.T) {
assert.Equal(t, test.user.DisplayName(), lfsLockRep.Lock.Owner.Name)
}

// check taht we don't have any lock
// check that we don't have any lock
for _, test := range resultsTests {
session := loginUser(t, test.user.Name)
req := NewRequestf(t, "GET", "/%s/info/lfs/locks", test.repo.FullName())
Expand Down