Ask A Question

Notifications

You’re not receiving notifications from this thread.

Basic Authentication and RSS Feeds Discussion

Is this functionality on the current gorails.com site? I'm not seeing it.

Edit, had to enter the url manually: https://gorails.com/episode...

Reply

It should be in the top right if you click on "Account" in the navigation too.

Reply

How do you put in Wistia videos to your Rails Server?????

Reply

I'm just storing the wistia video ID in Rails and then embedding the videos.

Reply

Hey
May I ask how would you implement a simple authentication form (simple password field) to filter private pages, for private photo album/info/etc per say ?
Click the link -> form -> load password protected page if password is true.

Reply

You could basically store a hashed password on the album and then prompt for the password. When they type in the password, run it through the same hashing algorithm (check out bcrypt) and if the hashes match, you can set a cookie letting the user view the page. This is basically how email/password logins work.

Reply

Where is it reading the episode data from?

Reply

@episodes is the instance variable you'd set in the controller just like you normally would when printing out the index.

Reply

This doesn't seem to be working for me. I;m using:

 @articles = Article.all.order(post_on_date: :asc)

    respond_to do |format|
      format.rss
    end

but I keep getting ActionController::UnknownFormat in RssController#index

Reply

Never mind. I got it figured out! Thanks for this!

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 81,842+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.

    Screencast tutorials to help you learn Ruby on Rails, Javascript, Hotwire, Turbo, Stimulus.js, PostgreSQL, MySQL, Ubuntu, and more.

    © 2024 GoRails, LLC. All rights reserved.