Module: NotificationService::Sms::Silverstreet::APIConfig

Included in:
Service
Defined in:
app/services/notification_service/sms/silverstreet/api_config.rb

Instance Method Summary collapse

Instance Method Details

#default_paramsObject



7
8
9
10
11
12
13
14
15
# File 'app/services/notification_service/sms/silverstreet/api_config.rb', line 7

def default_params
  {
    username: Figaro.env.SILVERSTREET_USERNAME!,
    password: Figaro.env.SILVERSTREET_PASSWORD!,
    sender: 'HungryHub',
    concat: 1,
    encoding: 'utf8',
  }
end

#endpointObject



3
4
5
# File 'app/services/notification_service/sms/silverstreet/api_config.rb', line 3

def endpoint
  "#{AdminSetting.silverstreet_sms_api_host}/send.php"
end