how to set up rails with postfix
Action Mailer How to setup Rails with postfix send only email
ankhnaton postedAction Mailer How to setup Rails with postfix send only email
ankhnaton postedGot it, thanks Chris! ``` <%= form.date_select :year, :discard_day => true, :discard_month => true, class: 'form-control' %> ```
Rob Thomas replied • SolvedMaybe this can help you https://gorails.com/episodes/inviting-users-with-devise_invitable?autoplay=1
Taylor Cooney repliedundefined method `create' for Task::Form:Class (NoMethodError) ./features/step_definitions/edit_details_steps.rb:3:in `"I am on the edit multiple-choice task details"' features/task/de...
denissiletsky postedThanks.
William Jones replied • SolvedThanks for the answer ! Now it works. Now I want to send it by users date and time and it doesn't send. It also doesn't save the date to db. https://paste2.org/eVc4sL5k
Michael Kogan repliedHey Louie, you may need to explain more of what you're trying to build. Typically you don't want to have multiple Devise models, just a single User with roles instead. It's much easier to work with.
Chris Oliver repliedFigured out the problem. I feel stupid now. I had accidentally removed `<%= javascript_pack_tag 'application' %>` from my application.html.erb file.
Dan Donche repliedChange webpacker.yml config ` dev_server: https: true `
Ghar repliedThank you!
Drazen replied • SolvedGot this working by parsing and opening the URL with `URI.parse`: ``` def video_email @user = params[:user] @video_url = params[:video_url] attachments['video.mp4'] = File.read(URI.parse(@vi...
Daniel Weaver replied • SolvedHey Daniel, spot on 🙌 The app I'm building is actually the middleware, the whole idea of the app is to make Shopify theme developers able to do things that they are usually aren't able to, without...
Karim Tarek repliedOn my deploy server I get `Bundler version 2.0.2` whereas the version on my local machine is `Bundler version 1.17.3` . How can I downgrade the server version ? I already tried some things before b...
Damian Nelwep replied**Ivan Raszl**, you did not understand. Read my question on SO: https://stackoverflow.com/questions/56828359/how-do-i-temporarily-redirect-stderr-in-ruby-on-rails
Alexey repliedSounds like permissions issues and seems like other people have experienced that. Try this: https://askubuntu.com/a/1118158
Chris Oliver repliedHi Tiago, is this a typo? `belongs_to: permission` It should be `belongs_to :permission`
Lidia Wisniewska repliedThank you posting this. It helped us cover attachment test cases.
Taha Husain replied • SolvedPerfect. JWPLAYER is exactly what I was looking for. Chris one more question. Rails uses the standard video_tag to actually render the video. Is there a way to count views like youtube. I know jw...
Darren Booker repliedThanks for explaining.
Ivan Raszl repliedIf you need an easy way to create a filtered table of data try this gem: https://github.com/leikind/wice_grid
Ivan Raszl replied