mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
11 lines
209 B
Ruby
11 lines
209 B
Ruby
module ActiveResource
|
|
module Observing
|
|
extend ActiveSupport::Concern
|
|
include ActiveModel::Observing
|
|
|
|
included do
|
|
wrap_with_notifications :create, :save, :update, :destroy
|
|
end
|
|
end
|
|
end
|