mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
[Fix id to _id](2cedbcb9b3 (r34310594)).
Thanks to justinr1234 and xet7 ! Related #802
This commit is contained in:
parent
74a4926e83
commit
75c84e3b5d
2 changed files with 2 additions and 2 deletions
|
|
@ -5,7 +5,7 @@ Org = new Mongo.Collection('org');
|
||||||
*/
|
*/
|
||||||
Org.attachSchema(
|
Org.attachSchema(
|
||||||
new SimpleSchema({
|
new SimpleSchema({
|
||||||
id: {
|
_id: {
|
||||||
/**
|
/**
|
||||||
* the organization id
|
* the organization id
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ OrgUser = new Mongo.Collection('orgUser');
|
||||||
*/
|
*/
|
||||||
OrgUser.attachSchema(
|
OrgUser.attachSchema(
|
||||||
new SimpleSchema({
|
new SimpleSchema({
|
||||||
id: {
|
_id: {
|
||||||
/**
|
/**
|
||||||
* the organization user's id
|
* the organization user's id
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue