I hereby claim:
- I am scneptune on github.
- I am scneptune (https://keybase.io/scneptune) on keybase.
- I have a public key ASBBIoL_3X8R-Vw7IBwMrhBTb94AcGd_2I3Wd6kOW2ucbwo
To claim this, I am signing this object:
class ProjectInformationDetails < ActiveRecord::Migration | |
def change | |
add_column :campaigns, :air_date, :string, null: false, default: DateTime.now | |
add_column :campaigns, :approval_type, :text, array: true, null: false, default: [] | |
add_column :campaigns, :campaign_department, :text, array: true, null:false, default: [] | |
add_column :campaigns, :campaign_job_uid, :string | |
add_column :campaigns, :distribution_spending, :integer, null: false, default: 0 | |
add_column :campaigns, :invoice_amount, :integer, null: false, default: 0 | |
add_column :campaigns, :lead_marketer, :string | |
add_column :campaigns, :lead_producer, :string |
// Existing response looks like | |
// from algolia after being indexed. | |
shows: [{ | |
id: 232432, | |
type: 'show', | |
attributes: { | |
title: 'Awesomeness Cares', | |
atv_id: '322334asdfasdf', | |
eidr: 'asdf2r2r2rwfasdfasdf', |
I hereby claim:
To claim this, I am signing this object:
Ticket Description This is the FE work to display the current search results using ES instead of Algolia.
-DUCKS: namespace action names within the reducer to prevent collisions ala: "delivery/ADD_DELIVERY_ITEM";
Problem: When a user goes to save a new episode, there is a potential to double submit an episode/show/ancillary if the user double clicks fast enough
Notes :
writeEpisode
(found in gulp/assets/javascripts/stores/actions/updateActions.js
) is hopelessly too complex and not very legiable, and handles both contexts for updating and saving new episodes.