Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 562 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 562 Bytes

sanity-plugin-onesignal

OneSignal Push Notification support for Sanity.io

Installation

sanity install onesignal

Usage

Use it in your schema types:

// [...]
{
  fields: [
    // [...]
    {
      name: 'onesignal',
      title: 'Notification',
      type: 'onesignal',
    },
  ]
}

Configuration

To use it you need to define your API Key and APP ID

// .../studio/config/onesignal.json
{
  "onesignalApiKey": "exampleKey",
  "onesignalAppId": "exampleID"
}