Trillium Smith
Trillium Smith
Hey all, I'd like us to use a different boolean check for admin status, let's do: Checking if the access level string contains the word "admin" will return true for...
```js // change user.middleware.js to const { User } = require('../models'); function checkDuplicateEmail(req, res, next) { User.findOne({ email: req.body.email }).then((user) => { if (user) { return res.sendStatus(400); } next(); });...
PR has been added to [user_permissions_search](https://github.com/hackforla/VRMS/tree/user_permissions_search) feature branch!
All good, happy to see you're well :) I'm definitely curious about the decisions you made to choose these libraries and what your vision was for how you wanted this...
I think one of my main questions is where this will end up residing. Eg is it gonna be available locally via something like the cheat sheet or is it...
I wanted to keep the commit record from @SimeonC if possible so I reconfigured a few things and it should be working properly. The code still builds in the same...
Moved files from `src/lib/*` to `src/*` Though, that same pattern is in `packages/cheatsheet/`, but it's literally the only one ```bash # find . -type d ./cheatsheet ./cheatsheet/node_modules ./cheatsheet/node_modules/@types ./cheatsheet/node_modules/.bin ./cheatsheet/node_modules/@fortawesome...
I've been working on mirroring the format of the `cheatsheet` for a `componentsheet`, I currently am getting stuck at module/types import from `@cursorless/test-case-component` but I think it's because I don't...
Haven't made that much progress on this since last check in. Got content to render from `packages/test-case-component` just now though so that's progress! I do my best to copy the...
Thanks for taking some extra time before you all hopped off todays call :) ## Notes ### cursorless-org/component-sheet page - get yaml coming into component - hardcode ok for now...