Method: OryClient::Configuration#server_settings

Defined in:
lib/ory-client/configuration.rb

#server_settingsObject

Returns an array of Server setting



251
252
253
254
255
256
257
258
259
260
261
262
263
264
# File 'lib/ory-client/configuration.rb', line 251

def server_settings
  [
    {
      url: "https://{project}.projects.oryapis.com",
      description: "No description provided",
      variables: {
        project: {
            description: "Project slug as provided by the Ory Console.",
            default_value: "playground",
          }
        }
    }
  ]
end