Remove omniauth and convert existing users
I can't believe I didn't think of that... Yeah, it was a validation failing on a `username` column that I have. Thanks Chris
Nino Rosella replied • SolvedI can't believe I didn't think of that... Yeah, it was a validation failing on a `username` column that I have. Thanks Chris
Nino Rosella replied • SolvedI'm not quite sure on #1, but as for #2, you've got paperclip which wants an actual file. Facebook's API is only going to return you the url of the file, so you've got to tell Paperclip that you wa...
Chris Oliver replied • SolvedDepending on what you want to do now, you can use something like this to work with their API: https://github.com/gimite/google-drive-ruby You'll just pass in the access token you received from omn...
Chris Oliver repliedI solve the problem with the help of Chris, thank you Chris Oliver. Take a look for the [answer here](http://stackoverflow.com/questions/40122366/how-configure-pundit-to-display-items-belonging-to...
Bruno Wego repliedfound it here...https://www.youtube.com/watch?v=tlXHiLY0Mi8
Joe Guerra replied • SolvedGot sidetracked with other projects, and finally got back to this with help. Thank you Chris -- processing locally and uploading with s3_uploader solved, no need for Carrierwave in the end.
Thomas Bush replied • SolvedHey Alex, That error is pointing out that it called `.name` on a class that was nil. The only line in your code that does this is `category.name` which means that you have a Recipient record witho...
Chris Oliver repliedIt's all good, though, with this site I am picking up so much I am impressed with what I have made so far, and that's just the user stuff lol
Alan Reid replied • SolvedThat's one of the tricky situations you have to handle with Twitter. I need to do a screencast on this, but the idea is pretty simple and here's a link to check out in the meantime: http://sourcey....
Chris Oliver repliedI know this is old but for anyone on Google: because of the possibility of the customer not paying the subscription fee I think [this](https://stackoverflow.com/a/45941054/1011803) is a better solu...
Jake replied • SolvedJust FYI: I did the redundancy check like this: client.search(query).each do |tweet| find_or_create_by(body: tweet.text, tweet_id: tweet.id) end
Sascha M. replied • SolvedI am not too sure about the editing of your user profiles, I am still pretty new to Rails myself. - If i find any other info i will let you know. The Devise docs should help you with editing a use...
Alan Reid replied1. You'll definitely want to do some parsing and validation. For example, leaving out the protocol happens all the time where someone might type in just `gorails.com` into the field. The protocol i...
Chris Oliver replied • Solvedcan you add your code and what you're expecting the result to be.
Francisco Quinones repliedQuick question Chris what happen if you have different user and different role like this. This is the users like me the owner of the services. "App Owner" User Model Roles: Super Admin Mode...
Francisco Quinones replied • SolvedIn Turbolinks 5, the equivalent method of `jQuery ->` is ``` document.addEventListener("turbolinks:load", function() { ... } ``` However, from the docs: >When possible, avoid using the tur...
Chris Zempel replied • SolvedI am so grateful for this recording. THANK YOU! And so fast.
Melanie repliedHey i have some problem with devise. I already created devise model for User and after that i run command rails g devise:views without user at the and. And now i decided that i must to have couple ...
Stefan Dabizljevic postedHm i will try to do something like this: I will create new rails devise for manager than i will make association between manager and company has_one. But from this point how i can connect login for...
Stefan Dabizljevic repliedThanks @chris, i found the solution here ==> https://github.com/thoughtbot/administrate/issues/225
Oyewole Samuel replied