Finally, push notification framework that does not hurt. currently supports Android (FCM) and iOS (APNs)
46
stars
6
forks
source link
User should be able to generate a notifier with e.g. rails g notifier UserNotifier new_notification #3
Closed
yuki24 closed 7 years ago
User should be able to generate a new notifier with a command like below:
It should generate:
app/notifiers/application_notifier.rb
if missingapp/notifiers/user_notifier.rb
app/views/user_notifier/new_friend_request.json+apn.jbuilder
(if action(s) is given)app/views/user_notifier/new_friend_request.json+fcm.jbuilder
(unless--only=apn
is given)It should fail if
config/initializers/fourseam.rb
is missing.