1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-13 23:48:55 +01:00
fab-manager/app/views/api/spaces/show.json.jbuilder

10 lines
303 B
Plaintext
Raw Normal View History

2021-12-21 09:51:40 +01:00
# frozen_string_literal: true
2022-11-08 16:20:34 +01:00
json.partial! 'api/spaces/space', space: @space
json.extract! @space, :characteristics, :created_at, :updated_at
2017-02-13 16:10:12 +01:00
json.space_files_attributes @space.space_files do |f|
json.id f.id
2022-11-08 16:20:34 +01:00
json.attachment_name f.attachment_identifier
2017-02-13 16:10:12 +01:00
json.attachment_url f.attachment_url
2017-02-14 12:41:51 +01:00
end