소스 검색

Add revoke factory methods

Allow resources to revoke permissions through the revokeXXXXX() methods.
master
부모
커밋
f5c7669d7d
1개의 변경된 파일30개의 추가작업 그리고 0개의 파일을 삭제
  1. +30
    -0
      src/core.ts

+ 30
- 0
src/core.ts 파일 보기

@@ -44,6 +44,12 @@ interface ResourceFactory {
allowPatch(): this;
allowEmplace(): this;
allowDelete(): this;
revokeFetchCollection(): this;
revokeFetchItem(): this;
revokeCreate(): this;
revokePatch(): this;
revokeEmplace(): this;
revokeDelete(): this;
}

export interface ResourceData<T extends BaseSchema> {
@@ -155,6 +161,30 @@ export const resource = <T extends BaseSchema>(schema: T): Resource<T> => {
canDelete = true;
return this;
},
revokeFetchCollection() {
canFetchCollection = false;
return this;
},
revokeFetchItem() {
canFetchItem = false;
return this;
},
revokeCreate() {
canCreate = false;
return this;
},
revokePatch() {
canPatch = false;
return this;
},
revokeEmplace() {
canEmplace = false;
return this;
},
revokeDelete() {
canDelete = false;
return this;
},
get canCreate() {
return canCreate;
},


불러오는 중...
취소
저장