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:
parent
fd47a76aa9
commit
b0206ff727
1 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue