Method: Writefully::HooksController#member

Defined in:
app/controllers/writefully/hooks_controller.rb

#memberObject



24
25
26
27
28
29
# File 'app/controllers/writefully/hooks_controller.rb', line 24

def member
  authorship = Authorship.find_by_uid(body.member.id)
  unless authorship
    Authorship.create_from_data(body.member)
  end
end