Source File
permission.go
Belonging Package
github.com/limanmys/render-engine/app/models
package models
// Permission structure of Permission object
type Permission struct {
ID string `json:"id"`
CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"`
Type string `json:"type"`
Key string `json:"key"`
Value string `json:"value"`
Extra string `json:"extra"`
Blame string `json:"blame"`
MorphID string `json:"morph_id"`
MorphType string `json:"morph_type"`
}
func (Permission) () string {
return "permissions"
}
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |