9 lines
154 B
Ruby
9 lines
154 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RsAuthComponent < ViewComponent::Base
|
|
def initialize(auth:)
|
|
@auth = auth
|
|
@web_app = auth.web_app
|
|
end
|
|
end
|