- Add [sso] config section with redirect_uri - Create mcdsl/sso client when SSO is configured - Add /login (landing page), /sso/redirect, /sso/callback routes - Add /logout route - Update login template with SSO landing page variant - Bump mcdsl to v1.6.0 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1.2 KiB
1.2 KiB
Contributing
Prerequisites
-
Download the sources and switch the working directory:
go get -u -d github.com/go-chi/chi cd $GOPATH/src/github.com/go-chi/chi
Submitting a Pull Request
A typical workflow is:
- Fork the repository.
- Create a topic branch.
- Add tests for your change.
- Run
go test. If your tests pass, return to the step 3. - Implement the change and ensure the steps from the previous step pass.
- Run
goimports -w ., to ensure the new code conforms to Go formatting guideline. - Add, commit and push your changes.
- Submit a pull request.