File tree 4 files changed +5
-1
lines changed
lib/plexus_web/controllers/api/v1
4 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ defmodule PlexusWeb.API.V1.AppJSON do
19
19
% {
20
20
package: app . package ,
21
21
name: app . name ,
22
- icon_url: app . icon_url
22
+ icon_url: app . icon_url ,
23
+ updated_at: DateTime . truncate ( app . updated_at , :second )
23
24
}
24
25
|> merge_scores ( app . scores )
25
26
end
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ defmodule PlexusWeb.API.V1.Schemas.App do
16
16
example: % {
17
17
"name" => "Signal" ,
18
18
"package" => "org.thoughtcrime.securesms" ,
19
+ "updated_at" => "2024-04-30T22:41:19Z" ,
19
20
"scores" => % {
20
21
"native" => % {
21
22
"rating_type" => "native" ,
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ defmodule PlexusWeb.API.V1.Schemas.AppResponse do
14
14
% {
15
15
"name" => "Signal" ,
16
16
"package" => "org.thoughtcrime.securesms" ,
17
+ "updated_at" => "2024-04-30T22:41:19Z" ,
17
18
"scores" => % {
18
19
"native" => % {
19
20
"rating_type" => "native" ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ defmodule PlexusWeb.API.V1.Schemas.AppsResponse do
17
17
% {
18
18
"name" => "Signal" ,
19
19
"package" => "org.thoughtcrime.securesms" ,
20
+ "updated_at" => "2024-04-30T22:41:19Z" ,
20
21
"scores" => % {
21
22
"native" => % {
22
23
"rating_type" => "native" ,
You can’t perform that action at this time.
0 commit comments