Skip to content

Instantly share code, notes, and snippets.

@prokop75
Created December 17, 2015 16:38
Show Gist options
  • Save prokop75/6d58f1e111e1a8b34d11 to your computer and use it in GitHub Desktop.
Save prokop75/6d58f1e111e1a8b34d11 to your computer and use it in GitHub Desktop.
Veggie Grill user opt out
app = App.find(858)
users = app.users
c=0
users.each {|u|
if (u.apps.count == 1)
puts "#{u.id} #{u.email}"
u.prevent_bundling_until = Time.now + 100.years
u.save!
end
} ;nil
puts c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment