(project_id, method)
| 121 | } |
| 122 | |
| 123 | getVar(project_id, method) { |
| 124 | return this.model |
| 125 | .find({ |
| 126 | project_id: project_id, |
| 127 | type: 'var', |
| 128 | method: method |
| 129 | }) |
| 130 | .select('_id path') |
| 131 | .exec(); |
| 132 | } |
| 133 | |
| 134 | getByQueryPath(project_id, path, method) { |
| 135 | return this.model |