mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Add Select All Checkbox for on Console API key Scopes Screen.
Fixes #477
This commit is contained in:
commit
eeaea6a83e
3 changed files with 6 additions and 5 deletions
|
|
@ -21,6 +21,7 @@
|
||||||
- Added support for boolean 'true' and 'false' in query strings alongside 1 and 0
|
- Added support for boolean 'true' and 'false' in query strings alongside 1 and 0
|
||||||
- Added pagination for projects list on the console home page.
|
- Added pagination for projects list on the console home page.
|
||||||
- Updated storage calculation to match IEC standards
|
- Updated storage calculation to match IEC standards
|
||||||
|
- Now using Alpine as base Docker image
|
||||||
- New and consistent response format for all API object + new response examples in the docs
|
- New and consistent response format for all API object + new response examples in the docs
|
||||||
- Removed user roles attribute from user object (can be fetched from /v1/teams/memberships) **
|
- Removed user roles attribute from user object (can be fetched from /v1/teams/memberships) **
|
||||||
- Removed type attribute from session object response (used only internally)
|
- Removed type attribute from session object response (used only internally)
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@ The easiest way to start running your Appwrite server is by running our docker-c
|
||||||
docker run -it --rm \
|
docker run -it --rm \
|
||||||
--volume /var/run/docker.sock:/var/run/docker.sock \
|
--volume /var/run/docker.sock:/var/run/docker.sock \
|
||||||
--volume "$(pwd)"/appwrite:/install/appwrite:rw \
|
--volume "$(pwd)"/appwrite:/install/appwrite:rw \
|
||||||
-e version=0.6.2 \
|
-e version=0.7.0 \
|
||||||
appwrite/install
|
appwrite/install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -63,7 +63,7 @@ docker run -it --rm \
|
||||||
docker run -it --rm ^
|
docker run -it --rm ^
|
||||||
--volume //var/run/docker.sock:/var/run/docker.sock ^
|
--volume //var/run/docker.sock:/var/run/docker.sock ^
|
||||||
--volume "%cd%"/appwrite:/install/appwrite:rw ^
|
--volume "%cd%"/appwrite:/install/appwrite:rw ^
|
||||||
-e version=0.6.2 ^
|
-e version=0.7.0 ^
|
||||||
appwrite/install
|
appwrite/install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -73,7 +73,7 @@ docker run -it --rm ^
|
||||||
docker run -it --rm ,
|
docker run -it --rm ,
|
||||||
--volume /var/run/docker.sock:/var/run/docker.sock ,
|
--volume /var/run/docker.sock:/var/run/docker.sock ,
|
||||||
--volume ${pwd}/appwrite:/install/appwrite:rw ,
|
--volume ${pwd}/appwrite:/install/appwrite:rw ,
|
||||||
-e version=0.6.2 ,
|
-e version=0.7.0 ,
|
||||||
appwrite/install
|
appwrite/install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,8 +36,8 @@ const APP_EMAIL_SECURITY = 'security@localhost.test'; // Default security email
|
||||||
const APP_USERAGENT = APP_NAME.'-Server v%s. Please report abuse at %s';
|
const APP_USERAGENT = APP_NAME.'-Server v%s. Please report abuse at %s';
|
||||||
const APP_MODE_ADMIN = 'admin';
|
const APP_MODE_ADMIN = 'admin';
|
||||||
const APP_PAGING_LIMIT = 12;
|
const APP_PAGING_LIMIT = 12;
|
||||||
const APP_CACHE_BUSTER = 131;
|
const APP_CACHE_BUSTER = 132;
|
||||||
const APP_VERSION_STABLE = '0.6.2';
|
const APP_VERSION_STABLE = '0.7.0';
|
||||||
const APP_STORAGE_UPLOADS = '/storage/uploads';
|
const APP_STORAGE_UPLOADS = '/storage/uploads';
|
||||||
const APP_STORAGE_FUNCTIONS = '/storage/functions';
|
const APP_STORAGE_FUNCTIONS = '/storage/functions';
|
||||||
const APP_STORAGE_CACHE = '/storage/cache';
|
const APP_STORAGE_CACHE = '/storage/cache';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue