diff --git a/ext/lib/site/formulario-propuesta/component.js b/ext/lib/site/formulario-propuesta/component.js index 5b7ff88..811ddb0 100644 --- a/ext/lib/site/formulario-propuesta/component.js +++ b/ext/lib/site/formulario-propuesta/component.js @@ -134,7 +134,7 @@ class FormularioPropuesta extends Component { let user = this.props.user.state.value this.setState({ // facultad: user.facultad._id, - claustro: user.claustro._id, + claustro: user.staff ? null : user.claustro._id, email: user.email, documento: user.dni, nombre: user.firstName + ' ' + user.lastName @@ -227,7 +227,7 @@ class FormularioPropuesta extends Component { if (this.state.titulo === '') return true if (this.state.problema === '') return true if (this.state.tag === '' ) return true - if (this.state.claustro === '') return true + //if (this.state.claustro === '') return true if (this.state.solucion === '') return true if (this.state.beneficios === '') return true if (this.state.facultad === '') return true @@ -597,7 +597,7 @@ class FormularioPropuesta extends Component { {this.hasErrorsField('solucion') &&
  • El campo "Tu idea" no puede quedar vacío
  • } {this.hasErrorsField('beneficios') &&
  • El campo "Beneficios" no puede quedar vacío
  • } {this.hasErrorsField('facultad') &&
  • El campo "Facultad" no puede quedar vacío
  • } - {this.hasErrorsField('claustro') &&
  • El campo "Claustro" no puede quedar vacío
  • } + {/* {this.hasErrorsField('claustro') &&
  • El campo "Claustro" no puede quedar vacío
  • } */} } diff --git a/lib/api-v2/topics/index.js b/lib/api-v2/topics/index.js index cfa4e63..f41cd98 100644 --- a/lib/api-v2/topics/index.js +++ b/lib/api-v2/topics/index.js @@ -174,8 +174,7 @@ middlewares.facultades.findFromBody, middlewares.tags.findFromBody, middlewares.topics.parseUpdateableKeys, middlewares.topics.autoPublish, -function postTopics (req, res, next) { - console.log(req); + function postTopics(req, res, next) { if (req.forum.config.propuestasAbiertas || req.user.staff || req.forum.hasRole(req.user, 'admin', 'collaborator', 'author')){ if (req.keysToUpdate['action.method'] === 'poll') req.keysToUpdate['action.options'] = req.body['action.options']