mirror of
https://github.com/System-End/stickers.git
synced 2026-04-19 22:05:10 +00:00
7 lines
260 B
Ruby
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
|