You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to get some input on formatters for entities, I have an idea.
module Entities
class User < Grape::Entity
formatter :timestamp
expose :name
expose :created_at, :formatter => :timestamp
private
def timestamp(date)
date.strftime('%m/%d/%Y')
end
end
end