Koha/api/v1/swagger/definitions/identity_provider_domain.yaml
Owen Leonard 78f1bfaccf
Bug 33859: Use the phrase 'Identity providers' instead of 'Authentication providers'
This patch updates instances in the code and templates where the term
"Authentication providers" is used, replacing it with the preferred
"Identity provider."

Most of the instances of this change are in module or API documentation,
but you can see a couple of the changes in the interface:

- Administration -> Identity providers:
  - The sidebar menu should show "Identity providers" instead of
    "Authentication providers."
- Patrons -> Patron details -> More -> Set permissions
  - Under " Manage Koha system settings (Administration panel)" you
    should see "Manage identity providers (manage_identity_providers)"

Signed-off-by: Sam Lau <samalau@gmail.com>
Signed-off-by: David Cook <dcook@prosentient.com.au>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-06-05 14:36:03 -03:00

47 lines
1.2 KiB
YAML

---
type: object
properties:
identity_provider_domain_id:
type: integer
description: Internally assigned identity provider domain identifier
readOnly: true
identity_provider_id:
type: integer
description: Internally assigned identity provider identifier
domain:
description: Matching domain ('*' used as wildcard)
type:
- string
- "null"
auto_register:
description: If patrons will be generated on login if required
type: boolean
update_on_auth:
description: If patron data is updated on login
type: boolean
default_library_id:
description: Internal identifier for the default library to be assigned to the new patrons
type:
- string
- "null"
default_category_id:
description: Internal identifier for the default patron's category
type:
- string
- "null"
allow_opac:
description: If this domain can be used for OPAC login
type: boolean
allow_staff:
description: If this domain can be used for staff login
type: boolean
additionalProperties: false
required:
- identity_provider_domain_id
- domain
- auto_register
- update_on_auth
- default_library_id
- default_category_id
- allow_opac
- allow_staff