Newer
Older
dmpopidor / app / views / api / v0 / plans / show.json.jbuilder
@briley briley on 23 May 2018 349 bytes Template Versioning
# builds a json response to a successful project createtion

json.prettify!

json.project do
  json.title      @project.title
  # TODO add after decision on user creation/identification
  json.created_by @project.owner.email
  json.id         @project.id
  json.created_at @project.created_at
  json.template @project.template.title
end