Fix ProjectIssueBoards api url

This commit is contained in:
Artem 2018-07-01 19:46:50 +03:00 committed by GitHub
parent e59373dc9b
commit 5f376fc91e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ import { ResourceIssueBoards } from '../templates';
class ProjectIssueBoards extends ResourceIssueBoards {
constructor(options) {
super('products', options);
super('projects', options);
}
}