Fix test login url returns 404

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-12-24 12:13:11 +01:00
parent 80762de99b
commit 41a6df9aec
4 changed files with 6 additions and 18 deletions

View File

@@ -99,14 +99,6 @@ func (s *Service) Run(ctx context.Context) error {
}
}
func (s *Service) GetEntityID() string {
return fmt.Sprintf("%s/connect/saml/metadata", s.baseURL)
}
func (s *Service) GetAcsURL() string {
return fmt.Sprintf("%s/connect/saml/consume", s.baseURL)
}
func (s *Service) GenerateSpMetadata() ([]byte, error) {
sp := s.baseServiceProvider()
return xml.MarshalIndent(sp.Metadata(), "", " ")