1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

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

View file

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