├── .github ├── FUNDING.yml └── workflows │ ├── release.yml │ ├── standard-go-test.yml │ └── standard-stale.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── Makefile ├── README.md ├── SHOULDERS.md ├── cmd ├── auth.go ├── available.go ├── root.go └── version.go ├── genny └── auth │ ├── auth.go │ └── templates │ ├── actions │ ├── auth.go.plush │ ├── auth_test.go.plush │ ├── home_test.go.plush │ ├── users.go.plush │ └── users_test.go.plush │ ├── migrations │ ├── create_users.down.fizz.plush │ └── create_users.up.fizz.plush │ ├── models │ ├── user.go.plush │ └── user_test.go.plush │ └── templates │ ├── auth │ ├── landing.html │ └── new.html │ └── users │ └── new.html ├── go.mod ├── go.sum └── main.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/standard-go-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/.github/workflows/standard-go-test.yml -------------------------------------------------------------------------------- /.github/workflows/standard-stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/.github/workflows/standard-stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/README.md -------------------------------------------------------------------------------- /SHOULDERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/SHOULDERS.md -------------------------------------------------------------------------------- /cmd/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/cmd/auth.go -------------------------------------------------------------------------------- /cmd/available.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/cmd/available.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/cmd/version.go -------------------------------------------------------------------------------- /genny/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/auth.go -------------------------------------------------------------------------------- /genny/auth/templates/actions/auth.go.plush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/actions/auth.go.plush -------------------------------------------------------------------------------- /genny/auth/templates/actions/auth_test.go.plush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/actions/auth_test.go.plush -------------------------------------------------------------------------------- /genny/auth/templates/actions/home_test.go.plush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/actions/home_test.go.plush -------------------------------------------------------------------------------- /genny/auth/templates/actions/users.go.plush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/actions/users.go.plush -------------------------------------------------------------------------------- /genny/auth/templates/actions/users_test.go.plush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/actions/users_test.go.plush -------------------------------------------------------------------------------- /genny/auth/templates/migrations/create_users.down.fizz.plush: -------------------------------------------------------------------------------- 1 | drop_table("users") -------------------------------------------------------------------------------- /genny/auth/templates/migrations/create_users.up.fizz.plush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/migrations/create_users.up.fizz.plush -------------------------------------------------------------------------------- /genny/auth/templates/models/user.go.plush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/models/user.go.plush -------------------------------------------------------------------------------- /genny/auth/templates/models/user_test.go.plush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/models/user_test.go.plush -------------------------------------------------------------------------------- /genny/auth/templates/templates/auth/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/templates/auth/landing.html -------------------------------------------------------------------------------- /genny/auth/templates/templates/auth/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/templates/auth/new.html -------------------------------------------------------------------------------- /genny/auth/templates/templates/users/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/genny/auth/templates/templates/users/new.html -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobuffalo/buffalo-auth/HEAD/main.go --------------------------------------------------------------------------------