Skip to content
Daniel Dupriest edited this page Mar 1, 2019 · 1 revision

Section Approval

An administrator with access to the sqlite database may approve report sections individually, which prevents them from generating rule violation errors. The procedure for approval is as follows:

  1. First, ensure you have installed and have access to the CLI tool sqlite3.
  2. Identify the ID of the section you wish to approve. This appears as "SID: ##" in email reports sent by reimbursinator.
  3. In the root directory of the backend server containing the database file, run sqlite3 db.sqlite3.
  4. Run UPDATE backend_section SET approved = 1 WHERE id = 1;. Note that "id = 1" should be modified to match the section ID.
  5. Run .quit

The section will now hide all rule violations from both user and administrator.

Clone this wiki locally