mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-10-08 14:51:14 +00:00
add shared-links api
This commit is contained in:
@@ -0,0 +1,36 @@
|
|||||||
|
/*!
|
||||||
|
* @license
|
||||||
|
* Copyright 2017 Alfresco Software, Ltd.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { RepoApi } from '../repo-api';
|
||||||
|
import { NodesApi } from '../nodes/nodes-api';
|
||||||
|
import { RepoClient } from './../../repo-client';
|
||||||
|
|
||||||
|
export class SharedLinksApi extends RepoApi {
|
||||||
|
|
||||||
|
shareFileById(id: string): Promise<any> {
|
||||||
|
const data = [{ nodeId: id }];
|
||||||
|
|
||||||
|
return this.post(`/shared-links`, { data })
|
||||||
|
.catch(this.handleError);
|
||||||
|
}
|
||||||
|
|
||||||
|
getSharedLinks(): Promise<any> {
|
||||||
|
return this.get(`/shared-links`)
|
||||||
|
.catch(this.handleError);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -21,6 +21,7 @@ import { PeopleApi } from './apis/people/people-api';
|
|||||||
import { NodesApi } from './apis/nodes/nodes-api';
|
import { NodesApi } from './apis/nodes/nodes-api';
|
||||||
import { SitesApi } from './apis/sites/sites-api';
|
import { SitesApi } from './apis/sites/sites-api';
|
||||||
import { FavoritesApi } from './apis/favorites/favorites-api';
|
import { FavoritesApi } from './apis/favorites/favorites-api';
|
||||||
|
import { SharedLinksApi } from './apis/shared-links/shared-links-api';
|
||||||
import { TrashcanApi } from './apis/trashcan/trashcan-api';
|
import { TrashcanApi } from './apis/trashcan/trashcan-api';
|
||||||
|
|
||||||
export class RepoClient {
|
export class RepoClient {
|
||||||
@@ -28,7 +29,7 @@ export class RepoClient {
|
|||||||
public nodes: NodesApi = new NodesApi(this.auth, this.config);
|
public nodes: NodesApi = new NodesApi(this.auth, this.config);
|
||||||
public sites: SitesApi = new SitesApi(this.auth, this.config);
|
public sites: SitesApi = new SitesApi(this.auth, this.config);
|
||||||
public favorites: FavoritesApi = new FavoritesApi(this.auth, this.config);
|
public favorites: FavoritesApi = new FavoritesApi(this.auth, this.config);
|
||||||
// public shared: SharedLinksApi = new SharedLinksApi(this.auth, this.config);
|
public shared: SharedLinksApi = new SharedLinksApi(this.auth, this.config);
|
||||||
public trashcan: TrashcanApi = new TrashcanApi(this.auth, this.config);
|
public trashcan: TrashcanApi = new TrashcanApi(this.auth, this.config);
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
Reference in New Issue
Block a user