module Mattermost::Endpoint::SAML
Public Instance Methods
get_certificate_status()
click to toggle source
# File lib/mattermost/endpoint/saml.rb, line 38 def get_certificate_status get("/saml/certificate/status") end
get_saml_metadata()
click to toggle source
# File lib/mattermost/endpoint/saml.rb, line 7 def get_saml_metadata get("/saml/metadata") end
remove_idp_certificate()
click to toggle source
# File lib/mattermost/endpoint/saml.rb, line 16 def remove_idp_certificate delete("/saml/certificate/idp") end
remove_private_key()
click to toggle source
# File lib/mattermost/endpoint/saml.rb, line 34 def remove_private_key delete("/saml/certificate/private") end
remove_public_certificate()
click to toggle source
# File lib/mattermost/endpoint/saml.rb, line 25 def remove_public_certificate delete("/saml/certificate/public") end
upload_idp_certificate(certificate)
click to toggle source
# File lib/mattermost/endpoint/saml.rb, line 11 def upload_idp_certificate(certificate) #post("saml/certifiate/idp", certificate) raise NotImplementedError end
upload_private_key(key)
click to toggle source
# File lib/mattermost/endpoint/saml.rb, line 29 def upload_private_key(key) #post("/saml/certificate/private", key) raise NotImplementedError end
upload_public_certificate(certificate)
click to toggle source
# File lib/mattermost/endpoint/saml.rb, line 20 def upload_public_certificate(certificate) #post("/saml/certificate/public", certificate) raise NotImplementedError end