Preselecting proposals - UIKonf/cfp GitHub Wiki
When the application is in hold mode, now's the time to do a pre-selection of the proposals.
Start by exporting proposals, distribute this to the review committee. Once they've made the decision, you can use the rails console to pre-select the proposals.
Preselecting a proposal
Start a console:
heroku run rails console
Update the proposal state to preselected:
Proposal.find(<id>).preselected!
Note: Once the application is in selection mode, only pre-selected proposals will be visible.
I preselected the wrong proposal
No worries, you just need to switch its state back to published.
Start a console:
heroku run rails console
Update the proposal state to published:
Proposal.find(<id>).published!