]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/oauth_token.rb
Merge remote-tracking branch 'upstream/pull/3470'
[rails.git] / app / models / oauth_token.rb
index 5eeda48ba87ae7e13bb5ef923435f925c03bca6d..b4519efe21642a0b60693e6279d2eeb32d59fde7 100644 (file)
@@ -35,9 +35,9 @@
 #  oauth_tokens_user_id_fkey                (user_id => users.id)
 #
 
-class OauthToken < ActiveRecord::Base
-  belongs_to :client_application
-  belongs_to :user
+class OauthToken < ApplicationRecord
+  belongs_to :client_application, :optional => true
+  belongs_to :user, :optional => true
 
   scope :authorized, -> { where("authorized_at IS NOT NULL and invalidated_at IS NULL") }