mirror of
https://github.com/System-End/hackatime.git
synced 2026-04-19 16:38:23 +00:00
* Imports are back!! * Settings UI v3 * Use Inertia forms for heartbeat imports * Update app/javascript/pages/Users/Settings/Data.svelte Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * Update Bundle * Fix broken Form/Button markup in Data.svelte settings page * Update JS deps * Greptile fixes * Remove dead code --------- Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
15 lines
281 B
Ruby
15 lines
281 B
Ruby
class Settings::DataController < Settings::BaseController
|
|
def show
|
|
render_data
|
|
end
|
|
|
|
private
|
|
|
|
def render_data(status: :ok)
|
|
render_settings_page(
|
|
active_section: "data",
|
|
settings_update_path: my_settings_profile_path,
|
|
status: status
|
|
)
|
|
end
|
|
end
|