Method: SentryApi.actions
- Defined in:
- lib/sentry-api.rb
.actions ⇒ Array<Symbol>
Returns an unsorted array of available client methods.
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 |