Skip to content

Commit

Permalink
Update to use BaseService
Browse files Browse the repository at this point in the history
Update to use BaseService
  • Loading branch information
lee-delarm6 committed Nov 14, 2024
1 parent 209ed8e commit 4e23f92
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion modules/vaos/app/services/eps/base_service.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# frozen_string_literal: true

module EPS
class BaseService < VAOS::SessionService
class BaseService < VAOS::BaseService
STS_OAUTH_TOKEN = :va_online_scheduling_sts_oauth_token

attr_accessor :user

def initialize(user)
super(user)
@user = user
end

private

def perform(method, path, params, headers = nil, options = nil)
Expand Down

0 comments on commit 4e23f92

Please sign in to comment.