mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
Update qbo.rb
This commit is contained in:
@@ -34,14 +34,18 @@ class Qbo < ActiveRecord::Base
|
||||
def self.get_base(type)
|
||||
oauth2_client = get_client
|
||||
qbo = self.first
|
||||
access_token = OAuth2::AccessToken.new(oauth2_client, qbo.qb_token , refresh_token: qbo.qb_secret)
|
||||
#access_token = OAuth2::AccessToken.new(oauth2_client, qbo.qb_token , refresh_token: qbo.qb_secret)
|
||||
|
||||
# get our access token ready
|
||||
if qbo.expire.to_date.past?
|
||||
access_token = OAuth2::AccessToken.new(oauth2_client, qbo.qb_token , refresh_token: qbo.qb_secret)
|
||||
new_access_token_object = access_token.refresh!
|
||||
qbo.token = new_access_token_object
|
||||
qbo.expire = 1.hour.from_now.utc
|
||||
qbo.save!
|
||||
access_token = new_access_token_object
|
||||
else
|
||||
access_token = qbo.token
|
||||
end
|
||||
|
||||
case type
|
||||
|
||||
Reference in New Issue
Block a user