Browse Source

specs,nextcloud: Fix news article

pull/115/head
jld3103 2 years ago
parent
commit
1989db9796
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 4
      packages/nextcloud/lib/src/nextcloud.openapi.dart
  2. 2
      packages/nextcloud/lib/src/nextcloud.openapi.g.dart
  3. 1
      packages/nextcloud/lib/src/nextcloud.openapi.json
  4. 1
      specs/news.json

4
packages/nextcloud/lib/src/nextcloud.openapi.dart

@ -1670,7 +1670,7 @@ class NewsArticle {
required this.id, required this.id,
required this.guid, required this.guid,
required this.guidHash, required this.guidHash,
required this.url, this.url,
required this.title, required this.title,
this.author, this.author,
required this.pubDate, required this.pubDate,
@ -1697,7 +1697,7 @@ class NewsArticle {
final String guidHash; final String guidHash;
final String url; final String? url;
final String title; final String title;

2
packages/nextcloud/lib/src/nextcloud.openapi.g.dart

@ -1002,7 +1002,7 @@ NewsArticle _$NewsArticleFromJson(Map<String, dynamic> json) => NewsArticle(
id: json['id'] as int, id: json['id'] as int,
guid: json['guid'] as String, guid: json['guid'] as String,
guidHash: json['guidHash'] as String, guidHash: json['guidHash'] as String,
url: json['url'] as String, url: json['url'] as String?,
title: json['title'] as String, title: json['title'] as String,
author: json['author'] as String?, author: json['author'] as String?,
pubDate: json['pubDate'] as int, pubDate: json['pubDate'] as int,

1
packages/nextcloud/lib/src/nextcloud.openapi.json

@ -1162,7 +1162,6 @@
"id", "id",
"guid", "guid",
"guidHash", "guidHash",
"url",
"title", "title",
"pubDate", "pubDate",
"body", "body",

1
specs/news.json

@ -144,7 +144,6 @@
"id", "id",
"guid", "guid",
"guidHash", "guidHash",
"url",
"title", "title",
"pubDate", "pubDate",
"body", "body",

Loading…
Cancel
Save