Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhisme/notes_backend
Backend app. See also frontend https://github.com/zhisme/notes_frontend
https://github.com/zhisme/notes_backend
Last synced: 27 days ago
JSON representation
Backend app. See also frontend https://github.com/zhisme/notes_frontend
- Host: GitHub
- URL: https://github.com/zhisme/notes_backend
- Owner: zhisme
- Created: 2019-10-26T11:55:52.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-12T02:45:07.000Z (over 2 years ago)
- Last Synced: 2024-10-22T11:13:42.370Z (2 months ago)
- Language: Ruby
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## create rails application
Given we have two models, Article and Story. Article has name, text and type (like blog post, facebook post or tweet).
Story has name and contains one or more articles.There should be a single API enpoint that returns list of articles. Basing on query params list could be:
- searched by article name or text
- sorted on any field
- grouped by any of field
- grouped by story with totals:
- article count
- article type count
- last created article according to current sort