mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 16:31:01 +00:00
13 lines
219 B
Go
13 lines
219 B
Go
|
package model
|
||
|
|
||
|
// Login represents a standard subset of user meta-data
|
||
|
// provided by OAuth login services.
|
||
|
type Login struct {
|
||
|
ID int64
|
||
|
Login string
|
||
|
Access string
|
||
|
Secret string
|
||
|
Name string
|
||
|
Email string
|
||
|
}
|