1
This commit is contained in:
@ -1,5 +0,0 @@
|
|||||||
// =================================================================================
|
|
||||||
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
|
||||||
// =================================================================================
|
|
||||||
|
|
||||||
package user
|
|
||||||
@ -1,15 +0,0 @@
|
|||||||
// =================================================================================
|
|
||||||
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
|
||||||
// =================================================================================
|
|
||||||
|
|
||||||
package user
|
|
||||||
|
|
||||||
import (
|
|
||||||
"server/api/user"
|
|
||||||
)
|
|
||||||
|
|
||||||
type ControllerV1 struct{}
|
|
||||||
|
|
||||||
func NewV1() user.IUserV1 {
|
|
||||||
return &ControllerV1{}
|
|
||||||
}
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
package user
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
|
|
||||||
"github.com/gogf/gf/v2/errors/gcode"
|
|
||||||
"github.com/gogf/gf/v2/errors/gerror"
|
|
||||||
|
|
||||||
"server/api/user/v1"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (c *ControllerV1) Info(ctx context.Context, req *v1.InfoReq) (res *v1.InfoRes, err error) {
|
|
||||||
return nil, gerror.NewCode(gcode.CodeNotImplemented)
|
|
||||||
}
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
package user
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
|
|
||||||
"github.com/gogf/gf/v2/errors/gcode"
|
|
||||||
"github.com/gogf/gf/v2/errors/gerror"
|
|
||||||
|
|
||||||
"server/api/user/v1"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (c *ControllerV1) List(ctx context.Context, req *v1.ListReq) (res *v1.ListRes, err error) {
|
|
||||||
return nil, gerror.NewCode(gcode.CodeNotImplemented)
|
|
||||||
}
|
|
||||||
@ -40,7 +40,7 @@ func Auth(r *ghttp.Request) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
Exit(r, err)
|
Exit(r, err)
|
||||||
}
|
}
|
||||||
r.SetCtxVar("userId", tokenOut.UserId)
|
r.SetCtxVar("id", tokenOut.UserId)
|
||||||
r.SetCtxVar("role", tokenOut.Role)
|
r.SetCtxVar("role", tokenOut.Role)
|
||||||
r.SetCtxVar("jti", tokenOut.JTI)
|
r.SetCtxVar("jti", tokenOut.JTI)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user