diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2017-02-21 16:35:28 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2017-02-21 16:35:28 +0000 |
commit | 316a7312341fd2d359b44da3f386c3739c1bdb4d (patch) | |
tree | 7989fd1598ef8d5b223b6cd1ef940df4372167b5 /lib/api/api.rb | |
parent | 35008f3412af4d1bd34b223dc8a61c4d77c69269 (diff) | |
parent | 32691ffd4a87e3492fa2d24d904602683bcf8ffb (diff) | |
download | gitlab-ce-316a7312341fd2d359b44da3f386c3739c1bdb4d.tar.gz |
Merge branch 'api-todos-restful' into 'master'
Use POST methods to mark Todos as done
Closes #28467
See merge request !9410
Diffstat (limited to 'lib/api/api.rb')
-rw-r--r-- | lib/api/api.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/api/api.rb b/lib/api/api.rb index dbb7271ccbd..e729c07f8c3 100644 --- a/lib/api/api.rb +++ b/lib/api/api.rb @@ -19,6 +19,7 @@ module API mount ::API::V3::Repositories mount ::API::V3::SystemHooks mount ::API::V3::Tags + mount ::API::V3::Todos mount ::API::V3::Templates mount ::API::V3::Users end |