Add trailing commas

I haven't worked with Ruby before, oops
This commit is contained in:
Jake Anto 2023-10-02 23:29:00 +05:30 committed by GitHub
parent fd47a76aa9
commit b0206ff727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -88,7 +88,7 @@ class ManifestSerializer < ActiveModel::Serializer
{
name: 'Explore',
url: '/explore',
}
},
]
end
@ -101,18 +101,18 @@ class ManifestSerializer < ActiveModel::Serializer
{
platform: 'play',
url: 'https://play.google.com/store/apps/details?id=org.joinmastodon.android',
id: 'org.joinmastodon.android'
id: 'org.joinmastodon.android',
},
{
platform: 'itunes',
url: 'https://apps.apple.com/us/app/mastodon-for-iphone/id1571998974',
id: 'id1571998974'
id: 'id1571998974',
},
{
platform: 'f-droid',
url: 'https://f-droid.org/en/packages/org.joinmastodon.android/',
id: 'org.joinmastodon.android'
}
id: 'org.joinmastodon.android',
},
]
end
end