Merge pull request #759 from lbryio/new_tag_descriptions

Added descriptions per Rob for reward, subscription tag.
This commit is contained in:
Mark 2018-09-13 12:58:15 -04:00 committed by GitHub
commit 81c27e41ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,7 @@ class MailActions extends Actions
public static function prepareSettingsFormPartial(array $vars)
{
return $vars + [
return $vars + [
'tagMetadata' => [
'3d-printing' => [
'label' => '3D Printing',
@ -104,6 +104,14 @@ class MailActions extends Actions
'label' => 'iPhone',
'description' => 'Be an iOS alpha tester, earn LBC, and receive notification when the app goes live!'
],
'reward' => [
'label' => 'Rewards',
'description' => 'Receive emails about the latest rewards that are available to LBRY users.'
],
'subscription' => [
'label' => 'Subscriptions',
'description' => 'Stay up to date on the latest content from your favorite creators.'
],
]
];
}