diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2017-02-07 13:02:56 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2017-02-07 13:02:56 +0000 |
commit | f97d7769e0c70b0d4cda376d03939e2aa78d2c0e (patch) | |
tree | a0a1e8af29b64799f7a5ca937389d43bf69cc8a8 /lib/api/api.rb | |
parent | 95a3e2da9b75ac30ff95f3bf6018d200204f6af6 (diff) | |
parent | 626e79b6f5ed18e1d023643d3e4b85dc4f20286c (diff) | |
download | gitlab-ce-f97d7769e0c70b0d4cda376d03939e2aa78d2c0e.tar.gz |
Merge branch 'api-remove-snippets-expires-at' into 'master'
Remove deprecated 'expires_at' from project snippets API
Closes #14156
See merge request !8723
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 1950d2791ab..1b008b527bc 100644 --- a/lib/api/api.rb +++ b/lib/api/api.rb @@ -8,6 +8,7 @@ module API mount ::API::V3::Issues mount ::API::V3::MergeRequests mount ::API::V3::Projects + mount ::API::V3::ProjectSnippets end before { allow_access_with_scope :api } |