mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
fix: missing options for tags.all
Signed-off-by: William Wheeler <william.wheeler@valuecentric.com>
This commit is contained in:
parent
5e579cbd2f
commit
a1a95e5a82
@ -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 = {}) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user