Created
December 17, 2015 16:38
-
-
Save prokop75/6d58f1e111e1a8b34d11 to your computer and use it in GitHub Desktop.
Veggie Grill user opt out
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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