My form submits with a column called stream_type, which can either be
"full", "30secs" or "90secs".

How can i set it so that it sets has_attached_file according to the
form value stream_type?

--------------

Model class looks like this:

  has_attached_file :media,
                    :styles => { :original =>
<need_to_set_dynamic_content_here> },
                    :url => '/assets/artists/:artist_id/
songs/:id/:style.:extension',
                    :path => ':rails_root/public/assets/
artists/:artist_id/songs/:id/:style.:extension',
                    :processors => [:process_audio]

--------------

So for example, if my form submits with stream_type = 90secs, then
has_attached_file will look like:

  has_attached_file :media,
                    :styles => { :original => '30' },
                    :url => '/assets/artists/:artist_id/
songs/:id/:style.:extension',
                    :path => ':rails_root/public/assets/
artists/:artist_id/songs/:id/:style.:extension',
                    :processors => [:process_audio]

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to