class Playbook::PbDialog::Dialog

def status_alerts

def status_alerts
  alerts = {
    "info" => %w[info-circle default],
    "default" => %w[exclamation-circle default],
    "caution" => %w[exclamation-triangle yellow],
    "delete" => %w[trash-alt red],
    "error" => %w[times-circle red],
    "success" => %w[check-circle green],
  }
  alerts[status]
end