datacite/bracco

View on GitHub
app/utils/validate-pwd-inputs.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function validatePwdInputs(route) {
  // Return true for any of the following routes.
  return (
    route == 'providers.show.change' ||
    route == 'repositories.show.change' ||
    route == 'change'
  );
}