mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-03 15:39:40 +00:00
24 lines
478 B
Go
24 lines
478 B
Go
package testdata
|
|
|
|
var currentUserPayload = []byte(`
|
|
{
|
|
"id": 1,
|
|
"username": "john_smith",
|
|
"email": "john@example.com",
|
|
"name": "John Smith",
|
|
"private_token": "dd34asd13as",
|
|
"state": "active",
|
|
"created_at": "2012-05-23T08:00:58Z",
|
|
"bio": null,
|
|
"skype": "",
|
|
"linkedin": "",
|
|
"twitter": "",
|
|
"website_url": "",
|
|
"theme_id": 1,
|
|
"color_scheme_id": 2,
|
|
"is_admin": false,
|
|
"can_create_group": true,
|
|
"can_create_project": true,
|
|
"projects_limit": 100
|
|
}
|
|
`)
|