Websites/app/models/api_usage.rb
2024-05-02 22:04:43 -05:00

7 lines
166 B
Ruby

# frozen_string_literal: true
class APIUsage < ApplicationRecord
belongs_to :user, class_name: "APIUser", optional: true
belongs_to :api_key, optional: true
end