Notification

Firebase Cloud Messaging

To make notification works you need to have FCM_KEY. Here the tutorial http://blog.dream-space.web.id/?p=116

please change FCM_KEY with yours

services/conf.php
/* FCM key for notification */
public $FCM_KEY = "AIzaSyCv-90mFpx3SCWlIKSXXXXXXXXXXXXXX";

Notification Title

We have some default notification :

NEWS 1. When Add News. 2. When Update News. You can edit from file app/root.js

app/root.js
root.NEWS_UPDATE = "News Updated";
root.NEWS_ADD = "News Added";
  • Notif title : String Above

  • Notif Content : News Title

Last updated

Was this helpful?