Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • omadrid/engine
  • javanick/engine
  • minds/engine
  • joe59/engine
  • eiennohi/engine
  • edgebal/engine
  • msantang78/engine
  • maruthi-adithya/engine
  • duyquoc/engine
  • benhayward.ben/engine
  • rlperez/engine
  • priestd09/engine
  • dknunn/engine
  • ascenderking/engine
  • catastrop/engine
  • jim-toth/engine
  • project_connection/engine
  • manishoo/engine
  • murbo98/engine
  • namesty/engine
  • Moikapy/engine
  • bedriguler/engine
  • CodingNagger/engine
  • jun784/engine
  • alexgleason/engine
  • gigasim97/engine
  • auxchar/engine
  • pestixaba/engine
  • m994/engine
  • webprodev/minds_engine
  • fabiolalombardim/engine
  • zackwy/engine
  • linleyj7/engine
  • fiatjaf/minds-engine
  • ppitestsblishaokai/engine
  • VARUN-KUSH/engine
  • brainr386/engine
37 results
Show changes
Commits on Source (4)
...@@ -95,7 +95,7 @@ class EarningsDashboard implements DashboardInterface ...@@ -95,7 +95,7 @@ class EarningsDashboard implements DashboardInterface
return [ return [
'category' => 'earnings', 'category' => 'earnings',
'label' => 'Pro Earnings', 'label' => 'Pro Earnings',
'description' => 'Earnings for PRO members will be paid out within 30 days upon reaching a minumum balance of $100.00.', 'description' => 'Earnings for Pro members will be paid out within 30 days upon reaching a minumum balance of $100.00.',
'timespan' => $this->timespansCollection->getSelected()->getId(), 'timespan' => $this->timespansCollection->getSelected()->getId(),
'timespans' => $this->timespansCollection->export(), 'timespans' => $this->timespansCollection->export(),
'metric' => $this->metricsCollection->getSelected()->getId(), 'metric' => $this->metricsCollection->getSelected()->getId(),
......
...@@ -279,6 +279,15 @@ class Push implements Interfaces\NotificationExtensionInterface ...@@ -279,6 +279,15 @@ class Push implements Interfaces\NotificationExtensionInterface
case 'messenger_invite': case 'messenger_invite':
return sprintf('@%s wants to chat with you!', $name); return sprintf('@%s wants to chat with you!', $name);
case 'referral_ping':
return sprintf('Free tokens are waiting for you! Once you join the rewards program by setting up your Minds wallet, both you and @%s will earn tokens for your referral', $name);
case 'referral_pending':
return sprintf('You have a pending referral! @%s used your referral link when they signed up for Minds. You\'ll get tokens once they join the rewards program and set up their wallet', $name);
case 'referral_complete':
return sprintf('You\'ve earned tokens for the completed referral of @%s', $name);
default: default:
return ""; return "";
} }
......