summaryrefslogtreecommitdiff
path: root/lib/authx/rpc/ability_handler.rb
blob: bc1444cad9cf0b9e19482a1e91ac92a243b5ee43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Authx
  module Rpc
    class AbilityHandler
      def allowed(request, env)
        puts [request, env].inspect

        {
          result: true
        }
      end
    end
  end
end