stickers/app/controllers/inertia_controller.rb

7 lines
260 B
Ruby

# frozen_string_literal: true
class InertiaController < ApplicationController
# Share data with all Inertia responses
# see https://inertia-rails.dev/guide/shared-data
# inertia_share user: -> { Current.user&.as_json(only: [:id, :name, :email]) }
end