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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
635b65d1
Commit
635b65d1
authored
Apr 08, 2016
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add method to return the user notification setting for a group, or a project
parent
ee497599
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
app/controllers/projects_controller.rb
app/controllers/projects_controller.rb
+1
-1
app/models/user.rb
app/models/user.rb
+4
-0
No files found.
app/controllers/projects_controller.rb
View file @
635b65d1
...
@@ -105,7 +105,7 @@ class ProjectsController < Projects::ApplicationController
...
@@ -105,7 +105,7 @@ class ProjectsController < Projects::ApplicationController
@membership
=
@project
.
team
.
find_member
(
current_user
.
id
)
@membership
=
@project
.
team
.
find_member
(
current_user
.
id
)
if
@membership
if
@membership
@notification_setting
=
current_user
.
notification_settings
.
find_or_initialize_by
(
source:
@project
)
@notification_setting
=
current_user
.
notification_settings
_for
(
@project
)
end
end
end
end
...
...
app/models/user.rb
View file @
635b65d1
...
@@ -831,6 +831,10 @@ class User < ActiveRecord::Base
...
@@ -831,6 +831,10 @@ class User < ActiveRecord::Base
end
end
end
end
def
notification_settings_for
(
source
)
notification_settings
.
find_or_initialize_by
(
source:
source
)
end
private
private
def
projects_union
def
projects_union
...
...
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