Sha256: 4b3282a48ef36280916e9bf8cb523d04c7b964e026e4639d845855d989e78cff
Contents?: true
Size: 1.09 KB
Versions: 117
Compression:
Stored size: 1.09 KB
Contents
# # # AUTO GENERATED LIVE EVENT # This was auto generated by the CanvasSync Gem. # You can customize it as needed, but make sure you test # any changes you make to the auto generated methods. # # LiveEvent message formats can be found at https://canvas.instructure.com/doc/api/file.live_events.html # In the general case, LiveEvent message content should not be trusted - it is highly possible that events may # arrive out of order. Most of the CanvasSync LiveEvent templates solve this by always fetching the object from the API. # module LiveEvents class UserEvent < LiveEvents::BaseEvent def process canvas_user_id = local_canvas_id(payload[:user_id]) user = User.where(canvas_id: canvas_user_id).first_or_initialize user.sync_from_api rescue Footrest::HttpError::Unauthorized => e # This can happen when a new user is created, but hasn't setup a login on Canvas yet. Rails.logger.info("Failed to fetch user #{canvas_user_id}: #{e.backtrace}") end end class UserCreatedEvent < LiveEvents::UserEvent; end class UserUpdatedEvent < LiveEvents::UserEvent; end end
Version data entries
117 entries across 117 versions & 1 rubygems