BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
projects_controller.rb
app/controllers/projects_controller.rb
+1
-1
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
@membership
=
@project
.
team
.
find_member
(
current_user
.
id
)
if
@membership
@notification_setting
=
current_user
.
notification_settings
.
find_or_initialize_by
(
source:
@project
)
@notification_setting
=
current_user
.
notification_settings
_for
(
@project
)
end
end
...
...
app/models/user.rb
View file @
635b65d1
...
...
@@ -831,6 +831,10 @@ class User < ActiveRecord::Base
end
end
def
notification_settings_for
(
source
)
notification_settings
.
find_or_initialize_by
(
source:
source
)
end
private
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