Skip to content

Commit

Permalink
feat: authorUrl and authorAvatar in api response
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Jun 6, 2024
1 parent 6dba13d commit c030e7e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/renderer/src/hono.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ declare const routes: hono_hono_base.HonoBase<hono.Env, {
url: string | null;
guid: string;
author: string | null;
authorUrl: string | null;
authorAvatar: string | null;
changedAt: string;
publishedAt: string;
images: string[] | null;
Expand Down Expand Up @@ -316,6 +318,8 @@ declare const routes: hono_hono_base.HonoBase<hono.Env, {
url: string | null;
guid: string;
author: string | null;
authorUrl: string | null;
authorAvatar: string | null;
changedAt: string;
publishedAt: string;
images: string[] | null;
Expand Down Expand Up @@ -368,6 +372,8 @@ declare const routes: hono_hono_base.HonoBase<hono.Env, {
url: string | null;
guid: string;
author: string | null;
authorUrl: string | null;
authorAvatar: string | null;
changedAt: string;
publishedAt: string;
images: string[] | null;
Expand Down Expand Up @@ -422,6 +428,8 @@ declare const routes: hono_hono_base.HonoBase<hono.Env, {
url: string | null;
guid: string;
author: string | null;
authorUrl: string | null;
authorAvatar: string | null;
changedAt: string;
publishedAt: string;
images: string[] | null;
Expand Down

1 comment on commit c030e7e

@achjqz
Copy link

@achjqz achjqz commented on c030e7e Sep 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

authorAvatar 是从 rss 的哪个 tag 解析出来的?

Please sign in to comment.