mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
|
# frozen_string_literal: true
|
||
|
|
||
|
@settings.each do |setting|
|
||
|
if setting[:errors]
|
||
|
json.error setting.errors.full_messages
|
||
|
json.id setting.id
|
||
|
json.name setting.name
|
||
|
else
|
||
|
json.partial! 'api/settings/setting', setting: setting
|
||
|
end
|
||
|
end
|