Been investigating SAML this morning, installing via RUN pip install https://github... in our on-premise Docker image. After finding the feature flag that needed enabling (could do with a mention in the README) clicking through to configure a provider threw this error:
TemplateDoesNotExist: sentry_auth_saml2/select-idp.html
12:28:07 [ERROR] django.request: Internal Server Error: /organizations/sentry/auth/ (status_code=500 request=<WSGIRequest: POST u'/organizations/sentry/auth/'>)
This PR updates MANIFEST.in to include those missing template files. Pretty unfamiliar with the python ecosystem - so not sure if there is a better/cleaner way to handle these.
Been investigating SAML this morning, installing via
RUN pip install https://github...
in our on-premise Docker image. After finding the feature flag that needed enabling (could do with a mention in the README) clicking through to configure a provider threw this error:This PR updates MANIFEST.in to include those missing template files. Pretty unfamiliar with the python ecosystem - so not sure if there is a better/cleaner way to handle these.