Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
03b3fe13
Commit
03b3fe13
authored
Apr 18, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make images_enabled configurable
parent
f41a3e24
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
2 deletions
+19
-2
app/controllers/projects_controller.rb
app/controllers/projects_controller.rb
+2
-1
app/views/projects/edit.html.haml
app/views/projects/edit.html.haml
+10
-0
lib/api/entities.rb
lib/api/entities.rb
+2
-1
lib/api/projects.rb
lib/api/projects.rb
+5
-0
No files found.
app/controllers/projects_controller.rb
View file @
03b3fe13
...
...
@@ -235,7 +235,8 @@ class ProjectsController < Projects::ApplicationController
def
project_params
params
.
require
(
:project
).
permit
(
:name
,
:path
,
:description
,
:issues_tracker
,
:tag_list
,
:runners_token
,
:issues_enabled
,
:merge_requests_enabled
,
:snippets_enabled
,
:issues_tracker_id
,
:default_branch
,
:issues_enabled
,
:merge_requests_enabled
,
:snippets_enabled
,
:images_enabled
,
:issues_tracker_id
,
:default_branch
,
:wiki_enabled
,
:visibility_level
,
:import_url
,
:last_activity_at
,
:namespace_id
,
:avatar
,
:builds_enabled
,
:build_allow_git_fetch
,
:build_timeout_in_minutes
,
:build_coverage_regex
,
:public_builds
,
...
...
app/views/projects/edit.html.haml
View file @
03b3fe13
...
...
@@ -84,6 +84,16 @@
%br
%span
.descr
Share code pastes with others out of git repository
-
if
Gitlab
.
config
.
registry
.
enabled
.form-group
.col-sm-offset-2.col-sm-10
.checkbox
=
f
.
label
:images_enabled
do
=
f
.
check_box
:images_enabled
%strong
Images
%br
%span
.descr
Use Docker Registry for this repository
=
render
'builds_settings'
,
f:
f
%fieldset
.features
...
...
lib/api/entities.rb
View file @
03b3fe13
...
...
@@ -66,7 +66,8 @@ module API
expose
:owner
,
using:
Entities
::
UserBasic
,
unless:
->
(
project
,
options
)
{
project
.
group
}
expose
:name
,
:name_with_namespace
expose
:path
,
:path_with_namespace
expose
:issues_enabled
,
:merge_requests_enabled
,
:wiki_enabled
,
:builds_enabled
,
:snippets_enabled
,
:created_at
,
:last_activity_at
expose
:issues_enabled
,
:merge_requests_enabled
,
:wiki_enabled
,
:builds_enabled
,
:snippets_enabled
,
:images_enabled
expose
:created_at
,
:last_activity_at
expose
:shared_runners_enabled
expose
:creator_id
expose
:namespace
...
...
lib/api/projects.rb
View file @
03b3fe13
...
...
@@ -94,6 +94,7 @@ module API
# builds_enabled (optional)
# wiki_enabled (optional)
# snippets_enabled (optional)
# images_enabled (optional)
# shared_runners_enabled (optional)
# namespace_id (optional) - defaults to user namespace
# public (optional) - if true same as setting visibility_level = 20
...
...
@@ -112,6 +113,7 @@ module API
:builds_enabled
,
:wiki_enabled
,
:snippets_enabled
,
:images_enabled
,
:shared_runners_enabled
,
:namespace_id
,
:public
,
...
...
@@ -143,6 +145,7 @@ module API
# builds_enabled (optional)
# wiki_enabled (optional)
# snippets_enabled (optional)
# images_enabled (optional)
# shared_runners_enabled (optional)
# public (optional) - if true same as setting visibility_level = 20
# visibility_level (optional)
...
...
@@ -206,6 +209,7 @@ module API
# builds_enabled (optional)
# wiki_enabled (optional)
# snippets_enabled (optional)
# images_enabled (optional)
# shared_runners_enabled (optional)
# public (optional) - if true same as setting visibility_level = 20
# visibility_level (optional) - visibility level of a project
...
...
@@ -222,6 +226,7 @@ module API
:builds_enabled
,
:wiki_enabled
,
:snippets_enabled
,
:images_enabled
,
:shared_runners_enabled
,
:public
,
:visibility_level
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment