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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
231d9e04
Commit
231d9e04
authored
Feb 18, 2013
by
Andrew8xx8
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Observer refactored to use StateMachine events
parent
6074896c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
app/observers/activity_observer.rb
app/observers/activity_observer.rb
+12
-4
No files found.
app/observers/activity_observer.rb
View file @
231d9e04
...
@@ -20,15 +20,23 @@ class ActivityObserver < ActiveRecord::Observer
...
@@ -20,15 +20,23 @@ class ActivityObserver < ActiveRecord::Observer
end
end
end
end
def
after_save
(
record
)
def
after_close
(
record
,
transition
)
if
record
.
changed
.
include?
(
"closed"
)
&&
record
.
author_id_of_changes
Event
.
create
(
Event
.
create
(
project:
record
.
project
,
project:
record
.
project
,
target_id:
record
.
id
,
target_id:
record
.
id
,
target_type:
record
.
class
.
name
,
target_type:
record
.
class
.
name
,
action:
(
record
.
closed
?
Event
::
CLOSED
:
Event
::
REOPENED
),
action:
Event
::
CLOSED
,
author_id:
record
.
author_id_of_changes
)
end
def
after_reopen
(
record
,
transition
)
Event
.
create
(
project:
record
.
project
,
target_id:
record
.
id
,
target_type:
record
.
class
.
name
,
action:
Event
::
REOPENED
,
author_id:
record
.
author_id_of_changes
author_id:
record
.
author_id_of_changes
)
)
end
end
end
end
end
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