diff --git a/app/controllers/api/v1/characters_controller.rb b/app/controllers/api/v1/characters_controller.rb index 94de793..e243561 100644 --- a/app/controllers/api/v1/characters_controller.rb +++ b/app/controllers/api/v1/characters_controller.rb @@ -8,7 +8,7 @@ module Api before_action :set def show - render json: CharacterBlueprint.render(@character) + render json: CharacterBlueprint.render(@character, view: :full) end private diff --git a/app/controllers/api/v1/summons_controller.rb b/app/controllers/api/v1/summons_controller.rb index 9227602..7f53e4d 100644 --- a/app/controllers/api/v1/summons_controller.rb +++ b/app/controllers/api/v1/summons_controller.rb @@ -8,7 +8,7 @@ module Api before_action :set def show - render json: SummonBlueprint.render(@summon) + render json: SummonBlueprint.render(@summon, view: :full) end private diff --git a/app/controllers/api/v1/weapons_controller.rb b/app/controllers/api/v1/weapons_controller.rb index 17d2490..53197f3 100644 --- a/app/controllers/api/v1/weapons_controller.rb +++ b/app/controllers/api/v1/weapons_controller.rb @@ -8,7 +8,7 @@ module Api before_action :set def show - render json: WeaponBlueprint.render(@weapon) + render json: WeaponBlueprint.render(@weapon, view: :full) end private