Change defaults on polls (and maybe other stuff)

api.modifyClass("controller:poll-ui-builder", {
  onShow() {
    this._super(...arguments);
    if (settings.Public) {this.set('publicPoll', true)};
    if (settings.Advanced) {this.set('showAdvanced', true)};
  }
});