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
aeb5262d
Commit
aeb5262d
authored
May 30, 2016
by
Long Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add changelog and code refactor
parent
41f8e6a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
CHANGELOG
CHANGELOG
+1
-0
project_member.rb
app/models/members/project_member.rb
+5
-1
No files found.
CHANGELOG
View file @
aeb5262d
Please view this file on the master branch, on stable branches it's out of date.
v 8.9.0 (unreleased)
- Fix issue todo not remove when leave project !4150 (Long Nguyen)
- Allow forking projects with restricted visibility level
- Improve note validation to prevent errors when creating invalid note via API
- Redesign navigation for project pages
...
...
app/models/members/project_member.rb
View file @
aeb5262d
...
...
@@ -14,7 +14,7 @@ class ProjectMember < Member
scope
:in_projects
,
->
(
projects
)
{
where
(
source_id:
projects
.
pluck
(
:id
))
}
scope
:with_user
,
->
(
user
)
{
where
(
user_id:
user
.
id
)
}
before_destroy
{
user
.
todos
.
where
(
project_id:
source_id
).
each
(
&
:destroy
)
if
user
}
before_destroy
:delete_member_todos
class
<<
self
...
...
@@ -103,6 +103,10 @@ class ProjectMember < Member
private
def
delete_member_todos
user
.
todos
.
where
(
project_id:
source_id
).
destroy_all
if
user
end
def
send_invite
notification_service
.
invite_project_member
(
self
,
@raw_invite_token
)
...
...
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