faustinoaq changed the topic of #amber to: Welcome to Amber Framework community! | https://amberframework.org | Developer happiness, productivity and bare metal performance | GH: https://github.com/amberframework | Docs: https://docs.amberframework.org | Gitter: https://gitter.im/amberframework/amber | IRC Logger: https://irclog.whitequark.org/amber | Amber::Server.start
<FromGitter> <andrewc910> Sorry @HCLarsen meant to ping @Brodan in my previous message. ⏎ But @Brodan i opened a PR for amber for the issue you asked about. Here it is: https://github.com/amberframework/amber/pull/1181 ⏎ ⏎ You can read what i put in the issue. It looks like granite isn't invoking the predefined `User#password=` method. I suggested a quick fix which is: ⏎ ... [https://gitte
<FromGitter> ... r.im/amberframework/amber?at=5e48a0ba46e99d431f7be7bb]
<FromGitter> <Blacksmoke16> thats what i suggested a few hours ago :P
<FromGitter> <andrewc910> @Blacksmoke16 didn't even notice. Did you code look line mine? I was hoping to do a type of ternary but returning 'nil' caused on error in bcrypt. Curious if there is a prettier solution
<FromGitter> <andrewc910> @drujensen hey, I saw your update on my PR. May I ask what you mean by rebase on master? I know what I rebasing is, but I am confused in this context I guess. Do you mean fast forward my "auth-fix" branch to add the new commit you added?
<FromGitter> <andrewc910> Sorry, this is my second PR ever outside of work.
<FromGitter> <Blacksmoke16> hmm maybe like
<FromGitter> <Blacksmoke16> ```if pass = <%= @name %>_params.validate!["password"] ⏎ <%= @name %>.password = pass ⏎ end``` [https://gitter.im/amberframework/amber?at=5e48adc9292ff243d3cd9e70]
<FromGitter> <andrewc910> Okay, fundamentally the same thing. Always nice seeing i didn't do something wrong haha
<FromGitter> <Blacksmoke16> :p
feepbot has quit [Ping timeout: 260 seconds]
feepbot has joined #amber
vivus has joined #amber
<FromGitter> <irlcatgirl> ```code paste, see link``` [https://gitter.im/amberframework/amber?at=5e49992b9d4c83598b948576]
<FromGitter> <irlcatgirl> working on a new Userauthenticate pipe
<FromGitter> <irlcatgirl> that checks the JWT
<FromGitter> <irlcatgirl> Migrating my application to use a VueJS client and am turning routes into an API
<FromGitter> <irlcatgirl> need to check a JWT that'll be sent from the VueJS client
<FromGitter> <irlcatgirl> a lot of stuff is working well so far
<FromGitter> <irlcatgirl> some of the private methods will need to be modified
<FromGitter> <irlcatgirl> any way I could make this a bit more readable?
<FromGitter> <Blacksmoke16> guard clauses could help a bit
<FromGitter> <Blacksmoke16> ```code paste, see link``` [https://gitter.im/amberframework/amber?at=5e499a75292ff243d3cf7ab4]