about summary refs log tree commit diff stats
path: root/src/tracker_state.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added early color hallways support v0.5.3Star Rauchenberger2023-09-281-0/+5
|
* Fixed race condition in reachabilityStar Rauchenberger2023-09-171-3/+11
|
* Use hardcoded AP ids nowStar Rauchenberger2023-09-171-11/+9
|
* Rewrote how panel solvability is determinedStar Rauchenberger2023-08-251-64/+96
| | | | This fixes an edge case with LEVEL 2, and likely fixes an undiscovered issue with no-doors Pilgrimage.
* Keep flood boundary even when on doors modeStar Rauchenberger2023-08-231-1/+3
| | | | Certain complex topologies (such as The Steady) require keeping the transitions around for longer.
* LEVEL 2 and required_panel supportStar Rauchenberger2023-08-031-0/+25
|
* Refactored away singletonsStar Rauchenberger2023-05-051-20/+28
| | | | (Except TrackerConfig, for now at least)
* Organised repoStar Rauchenberger2023-05-051-0/+181
: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
class Admin::DashboardController < Admin::AdminController
  before_action :set_section

  def index
  end

  private

    def set_section
      @section = "dashboard"
    end
end