Nnouka / devotion

This is an application for the edification of the Churches of Christ
1 stars 0 forks source link

Devotion For the Churches of Christ

A devotional has a duration. If a devotional has a duration of n days, then it must have n pulses. A pulse has a title, an exhortation, some scripture references, some prayer points. Scripture reference is book, chapter and verse Prayer point is, an issue and God’s answer

Domain Model

Devotion_Domain_Model

Creating a congregation

  1. Select a suitable name for a congregation

endpoint: api/protected/congregations/create

expected request

{
  "name": "Friendly name"
}

expected response

{
  "id": 1,
  "name": "Friendly name",
  "displayPic": null,
  "fullAddress": null
}