b7260326eb
1. Created a login page to create a JWT with the backend 2. Store the token locally so it can be reused between runs 3. Redirect to login on no auth 4. Redirect from login when already authenticated 5. Add a login / logout link 6. Clean up empty .css files from the tree TODO: the JWT needs to generate a refresh key yet Change-Id: I97b6f92e4ca897768c91d7816e2ef44dcd9d3acf
20 lines
529 B
Modula-2
20 lines
529 B
Modula-2
module opendev.org/airship/airshipui
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/google/uuid v1.1.1
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/spf13/cobra v1.0.0
|
|
github.com/stretchr/testify v1.6.1
|
|
opendev.org/airship/airshipctl v0.0.0-20200812155702-f61953bcf558
|
|
sigs.k8s.io/kustomize/api v0.5.1
|
|
)
|
|
|
|
replace (
|
|
k8s.io/client-go => k8s.io/client-go v0.0.0-20191114101535-6c5935290e33
|
|
k8s.io/kubectl => k8s.io/kubectl v0.0.0-20191219154910-1528d4eea6dd
|
|
)
|