-
Notifications
You must be signed in to change notification settings - Fork 6
Usage
Daniel Dupriest edited this page Mar 1, 2019
·
1 revision
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:
- First, ensure you have installed and have access to the CLI tool
sqlite3. - Identify the ID of the section you wish to approve. This appears as "SID: ##" in email reports sent by reimbursinator.
- In the root directory of the backend server containing the database file, run
sqlite3 db.sqlite3. - Run
UPDATE backend_section SET approved = 1 WHERE id = 1;. Note that "id = 1" should be modified to match the section ID. - Run
.quit
The section will now hide all rule violations from both user and administrator.