mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
Update changelog
This commit is contained in:
parent
b66e18818b
commit
477ef709c3
2 changed files with 12 additions and 2 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
# Unreleased
|
||||||
|
|
||||||
|
## TODO:
|
||||||
|
|
||||||
|
- Migrate existing imports from `raw_data` to the new file storage.
|
||||||
|
- Delete import files when import is deleted.
|
||||||
|
- Stream import files for parsing instead of downloading them.
|
||||||
|
|
||||||
|
## Changed
|
||||||
|
|
||||||
|
- Import files are now being attached to the import record instead of being stored in the `raw_data` database column.
|
||||||
|
|
||||||
# 0.25.3 - 2025-03-22
|
# 0.25.3 - 2025-03-22
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,6 @@ class User < ApplicationRecord
|
||||||
has_many :places, through: :visits
|
has_many :places, through: :visits
|
||||||
has_many :trips, dependent: :destroy
|
has_many :trips, dependent: :destroy
|
||||||
|
|
||||||
has_many_attached :import_files
|
|
||||||
|
|
||||||
after_create :create_api_key
|
after_create :create_api_key
|
||||||
after_create :import_sample_points
|
after_create :import_sample_points
|
||||||
after_commit :activate, on: :create, if: -> { DawarichSettings.self_hosted? }
|
after_commit :activate, on: :create, if: -> { DawarichSettings.self_hosted? }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue