Skip to content

Instantly share code, notes, and snippets.

@sebyx07
Created September 1, 2015 11:58
Show Gist options
  • Save sebyx07/203ddb4f85add2c0ba3e to your computer and use it in GitHub Desktop.
Save sebyx07/203ddb4f85add2c0ba3e to your computer and use it in GitHub Desktop.
class ContactResource < JSONAPI::Resource
attributes :name_first, :name_last, :email, :twitter
attribute :full_name
def full_name
"#{@model.name_first}, #{@model.name_last}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment