mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-04-28 18:39:26 -05:00
feat(gitee): search screen (#146)
This commit is contained in:
committed by
GitHub
parent
1ac27f4853
commit
8415a677c0
@@ -134,6 +134,7 @@ class GiteeIssue {
|
||||
String bodyHtml;
|
||||
String title;
|
||||
String state;
|
||||
GiteeRepo repository;
|
||||
GiteeRepoOwner user;
|
||||
String number;
|
||||
int id;
|
||||
|
||||
@@ -211,6 +211,9 @@ GiteeIssue _$GiteeIssueFromJson(Map<String, dynamic> json) {
|
||||
..bodyHtml = json['body_html'] as String
|
||||
..title = json['title'] as String
|
||||
..state = json['state'] as String
|
||||
..repository = json['repository'] == null
|
||||
? null
|
||||
: GiteeRepo.fromJson(json['repository'] as Map<String, dynamic>)
|
||||
..user = json['user'] == null
|
||||
? null
|
||||
: GiteeRepoOwner.fromJson(json['user'] as Map<String, dynamic>)
|
||||
@@ -229,6 +232,7 @@ Map<String, dynamic> _$GiteeIssueToJson(GiteeIssue instance) =>
|
||||
'body_html': instance.bodyHtml,
|
||||
'title': instance.title,
|
||||
'state': instance.state,
|
||||
'repository': instance.repository,
|
||||
'user': instance.user,
|
||||
'number': instance.number,
|
||||
'id': instance.id,
|
||||
|
||||
Reference in New Issue
Block a user