1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/app/models/tagging.rb
Zach Gollwitzer 457247da8e
Create tagging system (#792)
* Repro

* Fix

* Update signage

* Create tagging system

* Add tags to transaction imports

* Build tagging UI

* Cleanup

* More cleanup
2024-05-23 08:09:33 -04:00

4 lines
98 B
Ruby

class Tagging < ApplicationRecord
belongs_to :tag
belongs_to :taggable, polymorphic: true
end