mirror of
https://github.com/vale981/grapher
synced 2025-03-10 04:46:40 -04:00
14 lines
323 B
JavaScript
14 lines
323 B
JavaScript
import {Match} from 'meteor/check';
|
|
|
|
export const ExposeDefaults = {
|
|
publication: true,
|
|
method: true,
|
|
};
|
|
|
|
export const ExposeSchema = {
|
|
firewall: Match.Maybe(Function),
|
|
publication: Match.Maybe(Boolean),
|
|
method: Match.Maybe(Boolean),
|
|
embody: Match.Maybe(Object),
|
|
schema: Match.Maybe(Object),
|
|
};
|