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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
35aa39cb
Commit
35aa39cb
authored
Jun 27, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds an ID to the settings section to allow anchor linking for EE files
parent
3ed709a2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
ee/app/views/projects/_issues_settings.html.haml
ee/app/views/projects/_issues_settings.html.haml
+1
-1
ee/app/views/projects/_service_desk_settings.html.haml
ee/app/views/projects/_service_desk_settings.html.haml
+1
-1
ee/app/views/projects/mirrors/_pull.html.haml
ee/app/views/projects/mirrors/_pull.html.haml
+1
-1
ee/app/views/projects/push_rules/_index.html.haml
ee/app/views/projects/push_rules/_index.html.haml
+1
-1
No files found.
ee/app/views/projects/_issues_settings.html.haml
View file @
35aa39cb
-
if
@project
.
feature_available?
(
:issuable_default_templates
)
-
expanded
=
Rails
.
env
.
test?
%section
.settings.issues-feature.no-animate
{
class:
[(
'expanded'
if
expanded
),
(
'hidden'
if
@project
.
project_feature
.
send
(
:issues_access_level
)
==
0
)]
}
%section
.settings.issues-feature.no-animate
#js-issue-settings
{
class:
[(
'expanded'
if
expanded
),
(
'hidden'
if
@project
.
project_feature
.
send
(
:issues_access_level
)
==
0
)]
}
.settings-header
%h4
Issue settings
...
...
ee/app/views/projects/_service_desk_settings.html.haml
View file @
35aa39cb
-
if
EE
::
Gitlab
::
ServiceDesk
.
enabled?
(
project:
@project
)
||
(
show_promotions?
&&
show_callout?
(
'promote_service_desk_dismissed'
))
-
expanded
=
Rails
.
env
.
test?
%section
.settings.js-service-desk-setting-wrapper.no-animate
{
class:
(
'expanded'
if
expanded
)
}
%section
.settings.js-service-desk-setting-wrapper.no-animate
#js-service-desk
{
class:
(
'expanded'
if
expanded
)
}
.settings-header
%h4
Service Desk
...
...
ee/app/views/projects/mirrors/_pull.html.haml
View file @
35aa39cb
...
...
@@ -2,7 +2,7 @@
-
import_data
=
@project
.
import_data
||
@project
.
build_import_data
-
protocols
=
Gitlab
::
UrlSanitizer
::
ALLOWED_SCHEMES
.
join
(
'|'
)
%section
.settings.project-mirror-settings.no-animate
{
class:
(
'expanded'
if
expanded
)
}
%section
.settings.project-mirror-settings.no-animate
#js-pull-remote-repository
{
class:
(
'expanded'
if
expanded
)
}
.settings-header
%h4
Pull from a remote repository
...
...
ee/app/views/projects/push_rules/_index.html.haml
View file @
35aa39cb
-
return
unless
@project
.
feature_available?
(
:push_rules
)
-
expanded
=
Rails
.
env
.
test?
%section
.settings.no-animate
{
class:
(
'expanded'
if
expanded
)
}
%section
.settings.no-animate
#js-push-rules
{
class:
(
'expanded'
if
expanded
)
}
.settings-header
%h4
Push Rules
...
...
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