1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-02 13:24:20 +01:00
fab-manager/app/views/api/trainings/index.json.jbuilder

10 lines
387 B
Plaintext
Raw Normal View History

# frozen_string_literal: true
role = (current_user and current_user.admin?) ? 'admin' : 'user'
2016-03-23 18:39:41 +01:00
json.array!(@trainings) do |training|
2017-10-10 17:16:43 +02:00
json.extract! training, :id, :name, :description, :machine_ids, :nb_total_places, :slug, :disabled
json.training_image training.training_image.attachment.large.url if training.training_image
json.plan_ids training.plan_ids if role == 'admin'
2016-03-23 18:39:41 +01:00
end