11 lines
162 B
Ruby
11 lines
162 B
Ruby
|
class Observer::Transaction
|
||
|
|
||
|
def self.commit(params = {})
|
||
|
|
||
|
# execute ticket transactions
|
||
|
Observer::Ticket::Notification.transaction(params)
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|