From 05fcdfcb2e0e924f65db655f39c3b11b306b9dba Mon Sep 17 00:00:00 2001 From: Takuya N Date: Tue, 10 May 2022 20:26:50 +0900 Subject: [PATCH] Replace forem/forem instead of thepracticaldev/dev.to (#17626) Signed-off-by: Takuya Noguchi --- app/views/api/v0/articles/index.json.jbuilder | 2 +- app/views/api/v0/articles/show.json.jbuilder | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/api/v0/articles/index.json.jbuilder b/app/views/api/v0/articles/index.json.jbuilder index da98e6f208c13..0332a544409d4 100644 --- a/app/views/api/v0/articles/index.json.jbuilder +++ b/app/views/api/v0/articles/index.json.jbuilder @@ -4,7 +4,7 @@ json.array! @articles do |article| # /api/articles and /api/articles/:id have opposite representations # of `tag_list` and `tags and we can't align them without breaking the API, # this is fully documented in the API docs - # see for more details + # see for more details json.tag_list article.cached_tag_list_array json.tags article.cached_tag_list diff --git a/app/views/api/v0/articles/show.json.jbuilder b/app/views/api/v0/articles/show.json.jbuilder index faaf7f743f244..3891e4c615cb1 100644 --- a/app/views/api/v0/articles/show.json.jbuilder +++ b/app/views/api/v0/articles/show.json.jbuilder @@ -3,7 +3,7 @@ json.partial! "article", article: @article # /api/articles and /api/articles/:id have opposite representations # of `tag_list` and `tags and we can't align them without breaking the API, # this is fully documented in the API docs -# see for more details +# see for more details json.tag_list @article.cached_tag_list json.tags @article.cached_tag_list_array