FEATURE: Add hidden site settings for discobot to skip certain tutorials

Hidden for now because I'm undecided on whether this should be an
exposed interface.
This commit is contained in:
Guo Xiang Tan
2020-07-14 15:16:52 +08:00
parent cb68493e89
commit 75ad071899
4 changed files with 21 additions and 1 deletions

View File

@ -30,7 +30,12 @@ module DiscourseNarrativeBot
next_opts = self.class::TRANSITION_TABLE.fetch(next_state)
prerequisite = next_opts[:prerequisite]
break if !prerequisite || instance_eval(&prerequisite)
if (!prerequisite || instance_eval(&prerequisite)) && !(
SiteSetting.discourse_narrative_bot_skip_tutorials.present? &&
SiteSetting.discourse_narrative_bot_skip_tutorials.split("|").include?(next_state.to_s))
break
end
[:next_state, :next_instructions].each do |key|
opts[key] = next_opts[key]