forgeplus/app/views/projects/_project.json.jbuilder

13 lines
488 B
Plaintext
Raw Permalink Normal View History

2020-03-09 00:40:16 +08:00
json.id project.id
json.identifier project.identifier
json.name project.name
2020-03-20 20:55:18 +08:00
json.description Nokogiri::HTML(project.description).text
2020-03-09 00:40:16 +08:00
json.visits project.visits
json.praises_count project.praises_count
json.forked_count project.forked_count
json.is_public project.is_public
json.mirror_url project.repository&.mirror_url
json.last_update_time render_unix_time(project.updated_on)
json.time_ago time_from_now(project.updated_on)
2020-04-07 14:03:48 +08:00
json.forked_from_project_id project.forked_from_project_id