about summary refs log tree commit diff stats
path: root/svc/sqlite.go
Commit message (Collapse)AuthorAgeFilesLines
* delete a user, new config option for admin pass. pass is bcrypt hashed on ↵Benjamin Morrison2021-10-211-0/+4
| | | | startup and not stored in plaintext.
* updating module to live at sourcehutBen Morrison2020-06-201-2/+2
| | | | | | Also moving the 'registry' library into this repo, rather than maintaining them separately. It will still be decoupled, just live in this repository.
* some functions were missing comments. added those in where needed.Ben Morrison2019-12-191-0/+6
|
* license notice at top of each fileBen Morrison2019-07-111-0/+19
|
* updated internal functionality for registry v0.4.0 v0.4.4Ben Morrison2019-06-191-3/+3
|
* mutex and readability cleanupBen Morrison2019-06-131-10/+4
|
* removed mutex from remoteRegistriesBen Morrison2019-06-131-6/+0
| | | | | slices are safe to use concurrently already. leaving as a struct for possible expansion later.
* eliminated confObj.LastCache and confObj.LastPush. Unneeded when using ↵Ben Morrison2019-06-111-4/+0
| | | | ticker for intervals.
* dbSqlite.Push() now updating confObj.LastPush; dbSqlite.Push() and ↵Ben Morrison2019-06-111-5/+8
| | | | dbSqlite.Pull() now expecting pointer receiver only
* error missedBen Morrison2019-06-091-1/+1
|
* runtime bugfix for sqlite3Ben Morrison2019-06-081-1/+2
|
* split db-specific funcs into separate filesBen Morrison2019-06-081-0/+148