Method: SentryApi.actions

Defined in:
lib/sentry-api.rb

.actionsArray<Symbol>

Returns an unsorted array of available client methods.

Returns:

  • (Array<Symbol>)


40
41
42
43
# File 'lib/sentry-api.rb', line 40

def self.actions
  hidden = /endpoint|auth_token|default_org_slug|get|post|put|delete|validate|set_request_defaults|httparty/
  (SentryApi::Client.instance_methods - Object.methods).reject { |e| e[hidden] }
end