lib/doorkeeper/models/concerns/expirable.rb
module Doorkeeper module Models module Expirable def expired? expires_in && Time.now > expired_time end def expires_in_seconds return nil if expires_in.nil? expires = (created_at + expires_in.seconds) - Time.now expires_sec = expires.seconds.round(0) expires_sec > 0 ? expires_sec : 0 end private def expired_time created_at + expires_in.seconds end end end end