Module: Rodauth::OAuth::FeatureExtensions

Defined in:
lib/rodauth/oauth.rb

Instance Method Summary collapse

Instance Method Details

#auth_server_route(*args, &blk) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/rodauth/oauth.rb', line 9

def auth_server_route(*args, &blk)
  routes = route(*args, &blk)

  handle_meth = routes.last

  define_method(:"#{handle_meth}_for_auth_server") do
    next unless is_authorization_server?

    send(:"#{handle_meth}_not_for_auth_server")
  end

  alias_method :"#{handle_meth}_not_for_auth_server", handle_meth
  alias_method handle_meth, :"#{handle_meth}_for_auth_server"
end

#translatable_method(meth, value) ⇒ Object

override



25
26
27
28
# File 'lib/rodauth/oauth.rb', line 25

def translatable_method(meth, value)
  define_method(meth) { |*args| translate(meth, value, *args) }
  auth_value_methods(meth)
end