<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/lib/api/helpers.rb, branch update-singleton-pattern-docs</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Merge branch '27144-enforce-rubocop-trailing_commas-no_comma-style' into 'master'</title>
<updated>2017-05-10T21:43:34+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>robert@gitlab.com</email>
</author>
<published>2017-05-10T21:43:34+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=cb2f739d4844af094f62edb4e4dff1b3413a405b'/>
<id>cb2f739d4844af094f62edb4e4dff1b3413a405b</id>
<content type='text'>

Resolve "Use consistent style for trailing commas"

Closes #27144

See merge request !11063</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Resolve "Use consistent style for trailing commas"

Closes #27144

See merge request !11063</pre>
</div>
</content>
</entry>
<entry>
<title>Enable the Style/TrailingCommaInArguments cop</title>
<updated>2017-05-10T16:25:45+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2017-05-03T11:27:17+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3db37e05622aa3daa2be41bb9edc486cd2e54bcd'/>
<id>3db37e05622aa3daa2be41bb9edc486cd2e54bcd</id>
<content type='text'>
Use the EnforcedStyleForMultiline: no_comma option.

Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the EnforcedStyleForMultiline: no_comma option.

Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Use new SnippetsFinder signature in API</title>
<updated>2017-05-10T14:48:18+00:00</updated>
<author>
<name>Bob Van Landuyt</name>
<email>bob@gitlab.com</email>
</author>
<published>2017-05-10T10:03:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ebd8b7f60f41358df562625a4692f352b86b8c80'/>
<id>ebd8b7f60f41358df562625a4692f352b86b8c80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow admins to sudo to blocked users.</title>
<updated>2017-04-26T08:00:19+00:00</updated>
<author>
<name>Timothy Andrew</name>
<email>mail@timothyandrew.net</email>
</author>
<published>2017-04-21T06:44:47+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4dfdef2ddfc3cdeb6f6231e397543d120083a4c2'/>
<id>4dfdef2ddfc3cdeb6f6231e397543d120083a4c2</id>
<content type='text'>
- Currently, (for example) admins can't delete snippets for blocked users, which
  is an unexpected limitation.

- We modify `authenticate!` to conduct the `access_api` policy check against the
  `initial_current_user`, instead of the user being impersonated.

- Update CHANGELOG for !10842
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Currently, (for example) admins can't delete snippets for blocked users, which
  is an unexpected limitation.

- We modify `authenticate!` to conduct the `access_api` policy check against the
  `initial_current_user`, instead of the user being impersonated.

- Update CHANGELOG for !10842
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove the User#is_admin? method</title>
<updated>2017-04-09T02:20:57+00:00</updated>
<author>
<name>blackst0ne</name>
<email>blackst0ne.ru@gmail.com</email>
</author>
<published>2017-04-09T02:20:57+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=11aff97d88e32effe5d8e16caccb9d23b9a4995a'/>
<id>11aff97d88e32effe5d8e16caccb9d23b9a4995a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>API: Make the /notes endpoint work with noteable iid instead of id</title>
<updated>2017-03-27T13:29:37+00:00</updated>
<author>
<name>Toon Claes</name>
<email>toon@gitlab.com</email>
</author>
<published>2017-03-27T13:01:45+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=add5cd996f2a2261c9897052609a8b9d8a47261a'/>
<id>add5cd996f2a2261c9897052609a8b9d8a47261a</id>
<content type='text'>
In API V4 all endpoints were changed so Merge Requests and Issues
should be referred by iid, instead of id. Except the /notes endpoint
was forgotten. So change the endpoints from:

- /projects/:id/issues/:issue_id/notes
- /projects/:id/merge_requests/:merge_request_id/notes

To:

- /projects/:id/issues/:issue_iid/notes
- /projects/:id/merge_requests/:merge_request_iid/notes

For Project Snippets nothing changes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In API V4 all endpoints were changed so Merge Requests and Issues
should be referred by iid, instead of id. Except the /notes endpoint
was forgotten. So change the endpoints from:

- /projects/:id/issues/:issue_id/notes
- /projects/:id/merge_requests/:merge_request_id/notes

To:

- /projects/:id/issues/:issue_iid/notes
- /projects/:id/merge_requests/:merge_request_iid/notes

For Project Snippets nothing changes.
</pre>
</div>
</content>
</entry>
<entry>
<title>use the policy stack to protect logins</title>
<updated>2017-03-09T19:49:52+00:00</updated>
<author>
<name>http://jneen.net/</name>
<email>jneen@jneen.net</email>
</author>
<published>2017-02-28T21:19:52+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0ea04cc5bfcc125875a6e0f46702389f0e2e19c0'/>
<id>0ea04cc5bfcc125875a6e0f46702389f0e2e19c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>use a magic default :global symbol instead of nil</title>
<updated>2017-03-09T19:49:52+00:00</updated>
<author>
<name>http://jneen.net/</name>
<email>jneen@jneen.net</email>
</author>
<published>2017-02-28T21:08:07+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=846e581732e291f8927d04a5b1b40fe8f2688885'/>
<id>846e581732e291f8927d04a5b1b40fe8f2688885</id>
<content type='text'>
to make sure we mean the global permissions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to make sure we mean the global permissions
</pre>
</div>
</content>
</entry>
<entry>
<title>API routes referencing a specific merge request should use the MR `iid`</title>
<updated>2017-03-07T07:36:42+00:00</updated>
<author>
<name>Timothy Andrew</name>
<email>mail@timothyandrew.net</email>
</author>
<published>2017-02-25T12:25:32+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=719327112c2df2d842c4beb993745db1c95950fe'/>
<id>719327112c2df2d842c4beb993745db1c95950fe</id>
<content type='text'>
- As opposed to the `id` that was previously being used.
- This brings the API routes closer to the web interface's routes.
- This is specific to API v4.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- As opposed to the `id` that was previously being used.
- This brings the API routes closer to the web interface's routes.
- This is specific to API v4.
</pre>
</div>
</content>
</entry>
<entry>
<title>API routes referencing a specific issue should use the issue `iid`</title>
<updated>2017-03-07T07:36:42+00:00</updated>
<author>
<name>Timothy Andrew</name>
<email>mail@timothyandrew.net</email>
</author>
<published>2017-02-25T08:44:09+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=dd99622347e639e468b0538ebb57170c1299c858'/>
<id>dd99622347e639e468b0538ebb57170c1299c858</id>
<content type='text'>
- As opposed to the issue `id` that was previously being used.
- This brings the API routes closer to the web interface's routes.
- This is specific to API v4.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- As opposed to the issue `id` that was previously being used.
- This brings the API routes closer to the web interface's routes.
- This is specific to API v4.
</pre>
</div>
</content>
</entry>
</feed>
