mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
8 lines
260 B
Ruby
8 lines
260 B
Ruby
class ApiRequest < ApplicationRecord
|
|
belongs_to :application_integration, optional: true
|
|
belongs_to :integration_authorization, optional: true
|
|
|
|
scope :successful, -> { where(result: 'success') }
|
|
scope :errored, -> { where(result: 'error') }
|
|
end
|