fix: missing options for tags.all

Signed-off-by: William Wheeler <william.wheeler@valuecentric.com>
This commit is contained in:
William Wheeler 2018-02-07 09:10:16 -05:00
parent 5e579cbd2f
commit a1a95e5a82

View File

@ -2,10 +2,10 @@ import BaseModel from './BaseModel';
import { parse } from '../Utils';
class ProjectRepositoryTags extends BaseModel {
all(projectId) {
all(projectId, options = {}) {
const pId = parse(projectId);
return this.get(`projects/${pId}/repository/tags`);
return this.get(`projects/${pId}/repository/tags`, options);
}
create(projectId, options = {}) {