Websites/app/models/api_usage.rb

7 lines
166 B
Ruby
Raw Normal View History

2024-05-03 03:04:43 +00:00
# frozen_string_literal: true
class APIUsage < ApplicationRecord
belongs_to :user, class_name: "APIUser", optional: true
belongs_to :api_key, optional: true
end