korolvs/thatsaboy

View on GitHub
api/app/serializers/goal/goal_serializer.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Describes how to show a goal with full info
class Goal::GoalSerializer < ActiveModel::Serializer
  attributes :id, :name, :photo_url, :target, :current, :created_at
  has_many :actions, unless: -> { context == :index }
end