module Doorkeeper::Models::Expirable

def expires_in_seconds

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