Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
andriyun committed Aug 24, 2021
0 parents commit 68f8361
Show file tree
Hide file tree
Showing 7 changed files with 780 additions and 0 deletions.
49 changes: 49 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# OS2Web REST API module

## Module purpose

The module purpose is to provide URL's for fetching data via REST API.

## How does it work

After enabling module there is available URL's that could be used as REST API.

Most of them are coming from [RESTful Web Services module](https://www.drupal.org/docs/8/core/modules/rest/overview)
that is included in Drupal core.

Module provides preconfigured REST sources and Views for fetching lists nodes
and terms in JSON-format
* /node/[node id]?_format=json - particular node
* /rest/os2web/list/term - list of taxonomy terms
* /rest/os2web/list/node/[taxonomy term id] - list of nodes filtered by
[taxonomy term id]


## Install
Module is available to download via composer.
```
composer require os2web/os2web_rest_api
drush en os2web_rest_api
```

## Update
Updating process for OS2Web REST API module is similar to usual composer package.
Use Composer's built-in command for listing packages that have updates available:

```
composer outdated os2web/os2web_rest_api
```

## Contribution

Project is opened for new features and os course bugfixes.
If you have any suggestion or you found a bug in project, you are very welcome
to create an issue in github repository issue tracker.
For issue description there is expected that you will provide clear and
sufficient information about your feature request or bug report.

### Code review policy
See [OS2Web code review policy](https://github.com/OS2Web/docs#code-review)

### Git name convention
See [OS2Web git name convention](https://github.com/OS2Web/docs#git-guideline)
11 changes: 11 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "os2web/os2web_rest_api",
"description": "OS2Web Rest API",
"type": "drupal-module",
"require": {
"drupal/core": "*",
"drupal/restui": "*"
},
"license": "EUPL-1.2",
"minimum-stability": "dev"
}
Loading

0 comments on commit 68f8361

Please sign in to comment.