mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
be8ae01ba4
Also: add advanced accounting to plans
8 lines
184 B
Ruby
8 lines
184 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.extract! @user, :id, :email
|
|
json.name @user.profile.full_name
|
|
json.profile_attributes do
|
|
json.extract! @user.profile, :first_name, :last_name
|
|
end
|