Skip to content

Commit

Permalink
Merge PR #179 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by gurneyalex
  • Loading branch information
OCA-git-bot committed Jun 28, 2024
2 parents 4452b4b + dff21d7 commit 9855c7b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions auth_saml_environment/models/auth_saml_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ class AuthSamlProvider(models.Model):
_name = "auth.saml.provider"
_inherit = ["auth.saml.provider", "server.env.mixin"]

# Non-mandatory to be able to create objects
idp_metadata = fields.Text(required=False)
sp_pem_public = fields.Char(required=False)
sp_pem_private = fields.Char(required=False)

sp_pem_public_path = fields.Char(
string="sp_pem_public_path env config value",
)
Expand Down

0 comments on commit 9855c7b

Please sign in to comment.