mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-10 09:13:00 +08:00
Top level typos
Just a few things noticed while I start to look at this app.
This commit is contained in:
parent
ab43df9e4e
commit
d95ec29f34
3 changed files with 8 additions and 8 deletions
|
@ -23,7 +23,7 @@ Features:
|
||||||
- Clipperz.is
|
- Clipperz.is
|
||||||
|
|
||||||
|
|
||||||
For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
|
For a demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
|
||||||
|
|
||||||
## Tested on
|
## Tested on
|
||||||
- NextCloud 10 / 11
|
- NextCloud 10 / 11
|
||||||
|
@ -71,9 +71,9 @@ Example:
|
||||||
## Development
|
## Development
|
||||||
Passman uses a single `.js` file for the templates. This gives the benefit that we don't need to request every template with XHR.
|
Passman uses a single `.js` file for the templates. This gives the benefit that we don't need to request every template with XHR.
|
||||||
For CSS we use SASS so you need ruby and sass installed.
|
For CSS we use SASS so you need ruby and sass installed.
|
||||||
`templates.js` and the CSS are build width `grunt`.
|
`templates.js` and the CSS are built with `grunt`.
|
||||||
To watch for changes use `grunt watch`
|
To watch for changes use `grunt watch`
|
||||||
To run the unit tests install phpunit globally, and stup the envioronment variables on the `launch_phpunit.sh` script then just run that script any argumetns passed to this script will be forwarded to phpunit.
|
To run the unit tests install phpunit globally, and setup the environment variables on the `launch_phpunit.sh` script then just run that script, any arguments passed to this script will be forwarded to phpunit.
|
||||||
|
|
||||||
## Main developers
|
## Main developers
|
||||||
- Brantje
|
- Brantje
|
||||||
|
@ -86,4 +86,4 @@ Add yours when creating a pull request!
|
||||||
|
|
||||||
## FAQ
|
## FAQ
|
||||||
**Are you adding something to check if malicious code is executing on the browser?**
|
**Are you adding something to check if malicious code is executing on the browser?**
|
||||||
No, because malitous code could edit the functions that check for malicious code.
|
No, because malicious code could edit the functions that check for malicious code.
|
|
@ -4,5 +4,5 @@ export SERVER_BASE_DIR=/var/www/html/nextcloud/
|
||||||
export SERVER_CONFIG_DIR=/var/www/html/nextcloud/config/
|
export SERVER_CONFIG_DIR=/var/www/html/nextcloud/config/
|
||||||
export SERVER_CONFIG_FILE=config.php
|
export SERVER_CONFIG_FILE=config.php
|
||||||
|
|
||||||
# Lanuch the actual tests
|
# Launch the actual tests
|
||||||
phpunit -v $@
|
phpunit -v $@
|
||||||
|
|
|
@ -175,7 +175,7 @@ paths:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/definitions/Error'
|
$ref: '#/definitions/Error'
|
||||||
patch:
|
patch:
|
||||||
summary: Update a item
|
summary: Update an item
|
||||||
tags:
|
tags:
|
||||||
- Credential
|
- Credential
|
||||||
parameters:
|
parameters:
|
||||||
|
@ -199,7 +199,7 @@ paths:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/definitions/Error'
|
$ref: '#/definitions/Error'
|
||||||
delete:
|
delete:
|
||||||
summary: Delete a item permanently
|
summary: Delete an item permanently
|
||||||
description: For a 'soft' delete set delete_time
|
description: For a 'soft' delete set delete_time
|
||||||
tags:
|
tags:
|
||||||
- Credential
|
- Credential
|
||||||
|
@ -350,7 +350,7 @@ definitions:
|
||||||
description: Name of the item
|
description: Name of the item
|
||||||
description:
|
description:
|
||||||
type: string
|
type: string
|
||||||
description: Description the user the item has given
|
description: Description the user has given to the item
|
||||||
created:
|
created:
|
||||||
type: string
|
type: string
|
||||||
format: dateTime
|
format: dateTime
|
||||||
|
|
Loading…
Reference in a new issue