From 34eee25bd42d19287e3e33afd169cc979ab61f37 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sat, 11 May 2019 18:21:34 +0800 Subject: Move sdk structs to modules/structs (#6905) * move sdk structs to moduels/structs * fix tests * fix fmt * fix swagger * fix vendor --- modules/structs/user_key.go | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 modules/structs/user_key.go (limited to 'modules/structs/user_key.go') diff --git a/modules/structs/user_key.go b/modules/structs/user_key.go new file mode 100644 index 0000000000..ee487607c3 --- /dev/null +++ b/modules/structs/user_key.go @@ -0,0 +1,23 @@ +// Copyright 2015 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package structs + +import ( + "time" +) + +// PublicKey publickey is a user key to push code to repository +type PublicKey struct { + ID int64 `json:"id"` + Key string `json:"key"` + URL string `json:"url,omitempty"` + Title string `json:"title,omitempty"` + Fingerprint string `json:"fingerprint,omitempty"` + // swagger:strfmt date-time + Created time.Time `json:"created_at,omitempty"` + Owner *User `json:"user,omitempty"` + ReadOnly bool `json:"read_only,omitempty"` + KeyType string `json:"key_type,omitempty"` +} -- cgit v1.2.3