We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e0c9d45 + 1c7d8c0 commit 4b8e270Copy full SHA for 4b8e270
src/api/projects.js
@@ -4,7 +4,7 @@ import { TC_API_URL, PROJECTS_API_URL, PROJECTS_LIST_PER_PAGE } from '../config/
4
5
export function getProjects(criteria, pageNum) {
6
// add default params
7
- const includeFields = ['id', 'name', 'description', 'members', 'status', 'type', 'actualPrice', 'estimatedPrice', 'createdAt', 'updatedAt', 'createdBy', 'updatedBy', 'details', 'lastActivityAt', 'lastActivityUserId']
+ const includeFields = ['id', 'name', 'description', 'members', 'status', 'type', 'actualPrice', 'estimatedPrice', 'createdAt', 'updatedAt', 'createdBy', 'updatedBy', 'details', 'lastActivityAt', 'lastActivityUserId', 'version']
8
const params = {
9
limit: PROJECTS_LIST_PER_PAGE,
10
offset: (pageNum - 1) * PROJECTS_LIST_PER_PAGE,
0 commit comments