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
3d51147d
Commit
3d51147d
authored
Oct 08, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add user_id to system hook when new user created
parent
07437ac3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
app/services/system_hooks_service.rb
app/services/system_hooks_service.rb
+2
-1
spec/services/system_hooks_service_spec.rb
spec/services/system_hooks_service_spec.rb
+1
-1
No files found.
app/services/system_hooks_service.rb
View file @
3d51147d
...
...
@@ -36,7 +36,8 @@ class SystemHooksService
when
User
data
.
merge!
({
name:
model
.
name
,
email:
model
.
email
email:
model
.
email
,
user_id:
model
.
id
})
when
UsersProject
data
.
merge!
({
...
...
spec/services/system_hooks_service_spec.rb
View file @
3d51147d
...
...
@@ -7,7 +7,7 @@ describe SystemHooksService do
context
'it should build event data'
do
it
'should build event data for user'
do
SystemHooksService
.
build_event_data
(
user
,
:create
).
should
include
(
:event_name
,
:name
,
:created_at
,
:email
)
SystemHooksService
.
build_event_data
(
user
,
:create
).
should
include
(
:event_name
,
:name
,
:created_at
,
:email
,
:user_id
)
end
it
'should build event data for project'
do
...
...
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