Create tagging system (#792)

* Repro

* Fix

* Update signage

* Create tagging system

* Add tags to transaction imports

* Build tagging UI

* Cleanup

* More cleanup
This commit is contained in:
Zach Gollwitzer
2024-05-23 08:09:33 -04:00
committed by GitHub
parent 41c991384a
commit 457247da8e
38 changed files with 607 additions and 90 deletions

4
app/models/tagging.rb Normal file
View File

@@ -0,0 +1,4 @@
class Tagging < ApplicationRecord
belongs_to :tag
belongs_to :taggable, polymorphic: true
end