Search Results for "resetting-the-password-while-roadrunner-email-login"
Lessons
Forum Threads
Setup MacOS 10.9 Mavericks Discussion
85
General
Works like a fucking charm!
Someone replied
Setup Windows 10 Discussion
236
General
Hi,I got all the way through this so thanks for the walk through! I run "rails server -b 0.0.0.0" and the server boots fine but when I go to localhost:3000 in the browser, the browser icon spins bu...
Handling Subdomains and Multitenancy From Scratch Discussion
55
General
This is my favorite episode thus far. The expansion on top of Rails is so intuitive, never thought how useful separating accounts from users would be.Hopefully there's a simple answer to this. When...
Robert Ault replied
Devise
9
Rails
I watched the Gorails Rails Password Reset 2 part video for password reset. My question is my devise setup only create encrypted_password, and reset_password_token, not password or token columns. C...
paxtonleiny replied
How do I subscribe action cable receiver to a new stream without resetting the entire channel subscription?
1
General
I have an inbuilt chat service on my application. A signed in user will select another user to start a conversation with them. How can I send stream for this new conversation to the 2 users without...
Nathan Chalot replied
has_one association on polymorphic model
4
General
I have the following models (stripped down for simplicity) :
```ruby
class Activity < ActiveRecord::Base
belongs_to :trackable, polymorphic: true
belongs_to :user
has_one :comment, as: :t...
Greg Answer replied
Solved
Why is viewer_id 0 on every video?
4
Rails
The viewer_id always returns 0 after creating a video. A mentor creates a video with a user via hangouts. Mentor then creates the video on our website. Only the mentor and viewer should see the vi...
How do I display a list of Favorited Posts from forum on the User Profile page?
5
Rails
I'm creating a forum and am trying to display a list of posts that have been **favorited** by the current user in the ```users/show.html.erb``` view.
When I favorite a post however, then go to my ...
Rob Sturcke replied
Solved
jQuery UJS and AJAX Discussion
27
General
Thanks Chris, nice one
Someone replied
How to Submit Complex Form Data in Ruby on Rails Discussion
3
General
Hi Chris,
Yet another good tutorial you made. I must say I always use option 1.
I don't like moving logic to JS if not needed because more dependencies and more code
How to add Notifications to Rails with Noticed Discussion
36
General
Awesome gem, I had been thinking on how to integrate all types of notification from rails app, from web notification, emails and Push Notifications. I guess Push Notification is just an API call (f...
Alek Yageornba replied
How can I grow this search object?
6
General
I've got a domain object I use to search images by whatever tags it has/the year the item in the image was made. It's worked flawlessly in a couple places:
```ruby
class SearchImage
def initial...
Chris Oliver replied
How Do I Search Against Records Saved In Memory, and Not the Database?
0
Rails
# Problem
I have an event that starts Jan 1, 2017 and repeats every day until Dec 31, 2017. If I search for an event (using [ransack](https://github.com/activerecord-hackery/ransack)) that starts a...
Steve Polito posted
Create dynamic table for existing resource
3
Tips
Hello.
I have an existing RoR site, and I've added a new resource that will allow users to add different coffee roasts. On the resulting table, I'd like users to be able to filter the restults ba...
Simon Cooper replied
Getting data from one Rails app to another
0
General
I'll try to keep this as brief as possible.
I have a Rails app which is a static codebase and runs on 9 different servers all the same db schema but of course with different values.
I wrote some...
shakycode posted
migrating to php
2
Ruby
Hello,
I have inherited a ruby application and unfortunately have no knowledge of the language.
Could someone be so kind to help me figure out how to convert the below code to php?
```
def genera...
vampster replied
Solved
Testing Turbolinks 3 partial replacement
1
Testing
Hey Chris (and everyone else) - Have you played around much with Turbolinks 3 partial replacement? (Chris, I wathed your livecoding segment; was great, thanks.) I'm using it with Rails 4.2.5, and...
Chris Oliver replied
How to use Bootstrap with CSS bundling in Rails Discussion
28
General
Thanks for another great video. It's no wonder why I sometimes feel lost in the Rails ecosystem. I learned Rails using the asset pipeline, then it switched to using Webpacker which I never fully un...
Almas Asghar replied
Introduction to Importing from CSV Discussion
46
General
thanks
HP replied
How do I switch off Devise authorization for API requests?
0
Javascript
I have 2 URL's to access the same Rails application. One URL is internal to our network and does not require authentication. The other is accessible outside our network and does require authenticat...
William Jones posted