<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/spec/helpers, branch docs/trigger-script</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Merge branch 'master' into 'issue_38337'</title>
<updated>2018-03-06T16:28:54+00:00</updated>
<author>
<name>Felipe Artur</name>
<email>fcardozo@gitlab.com</email>
</author>
<published>2018-03-06T16:28:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e77c4e9efe0e19187929e5836cda5a3a59d0f89f'/>
<id>e77c4e9efe0e19187929e5836cda5a3a59d0f89f</id>
<content type='text'>
# Conflicts:
#   app/models/group.rb
#   db/schema.rb</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
# Conflicts:
#   app/models/group.rb
#   db/schema.rb</pre>
</div>
</content>
</entry>
<entry>
<title>Replace deprecated name_with_namespace with full_name in app and spec</title>
<updated>2018-03-05T14:15:26+00:00</updated>
<author>
<name>Dmitriy Zaporozhets</name>
<email>dmitriy.zaporozhets@gmail.com</email>
</author>
<published>2018-03-05T14:15:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8fe9995f11010749c5fb183f2d8129f547ae6d4a'/>
<id>8fe9995f11010749c5fb183f2d8129f547ae6d4a</id>
<content type='text'>
Signed-off-by: Dmitriy Zaporozhets &lt;dmitriy.zaporozhets@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Dmitriy Zaporozhets &lt;dmitriy.zaporozhets@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Bring one group board to CE</title>
<updated>2018-03-03T15:56:17+00:00</updated>
<author>
<name>Felipe Artur</name>
<email>felipefac@gmail.com</email>
</author>
<published>2018-02-19T19:06:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=dd071c4b6e9754a0abeec45ab2040d9e2d5a62b8'/>
<id>dd071c4b6e9754a0abeec45ab2040d9e2d5a62b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove u2f webpack bundle</title>
<updated>2018-03-01T18:13:50+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2018-03-01T18:13:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d79df7baf7426ca865958b9a5fecb0690a6a6ba3'/>
<id>d79df7baf7426ca865958b9a5fecb0690a6a6ba3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '41255-refactoring-of-blob-link-methods-in-blob_helper' into 'master'</title>
<updated>2018-02-26T15:03:21+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2018-02-26T15:03:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2e59b4ea15f819d3b41140bf15a8e95a4a760cd3'/>
<id>2e59b4ea15f819d3b41140bf15a8e95a4a760cd3</id>
<content type='text'>
Resolve "Refactoring of blob link methods in blob_helper"

Closes #41255

See merge request gitlab-org/gitlab-ce!16851</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Resolve "Refactoring of blob link methods in blob_helper"

Closes #41255

See merge request gitlab-org/gitlab-ce!16851</pre>
</div>
</content>
</entry>
<entry>
<title>Don't convert issuable_initial_data into JSON</title>
<updated>2018-02-26T09:10:21+00:00</updated>
<author>
<name>Jan Provaznik</name>
<email>jprovaznik@gitlab.com</email>
</author>
<published>2018-02-23T14:45:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=22addf26732e15bd63112c21f03a7f20c5feabc9'/>
<id>22addf26732e15bd63112c21f03a7f20c5feabc9</id>
<content type='text'>
Instead of converting hash into JSON inside
issuable_initial_data method, return hash and convert
to JSON later. This allows us to easily extend basic
issuable data with resource specific values. For example
for Epic these data should include also labels, so we can then
do something like:
issuable_initial_data(@epic).merge(labels: @epic.labels).to_json
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of converting hash into JSON inside
issuable_initial_data method, return hash and convert
to JSON later. This allows us to easily extend basic
issuable data with resource specific values. For example
for Epic these data should include also labels, so we can then
do something like:
issuable_initial_data(@epic).merge(labels: @epic.labels).to_json
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor methods inline</title>
<updated>2018-02-23T15:52:18+00:00</updated>
<author>
<name>James Lopez</name>
<email>james@jameslopez.es</email>
</author>
<published>2018-02-23T15:52:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c888e73bc6bf7c89c551a45e579a3b319d435d21'/>
<id>c888e73bc6bf7c89c551a45e579a3b319d435d21</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor code based on feedback</title>
<updated>2018-02-23T13:02:40+00:00</updated>
<author>
<name>James Lopez</name>
<email>james@jameslopez.es</email>
</author>
<published>2018-02-22T12:54:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0767861bcdc62cedf374c6a4b53d8526efb4ff58'/>
<id>0767861bcdc62cedf374c6a4b53d8526efb4ff58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>some initial refactoring</title>
<updated>2018-02-23T13:02:39+00:00</updated>
<author>
<name>James Lopez</name>
<email>james@jameslopez.es</email>
</author>
<published>2018-02-15T07:53:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=bee837d7b5025a2e170dc0c857b188b4d89c014f'/>
<id>bee837d7b5025a2e170dc0c857b188b4d89c014f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'bvl-external-auth-port' into 'master'</title>
<updated>2018-02-23T09:14:14+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2018-02-23T09:14:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f4bc6ec92e2af0b6cfd64f9ff0ca683bf62820d1'/>
<id>f4bc6ec92e2af0b6cfd64f9ff0ca683bf62820d1</id>
<content type='text'>
Port `read_cross_project` ability from EE

See merge request gitlab-org/gitlab-ce!17208</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Port `read_cross_project` ability from EE

See merge request gitlab-org/gitlab-ce!17208</pre>
</div>
</content>
</entry>
</feed>
