mirror of
https://github.com/1Remote/1Remote.git
synced 2026-04-25 13:36:03 +03:00
[GH-ISSUE #218] Centralize accounts in settings #2110
Labels
No labels
area-configuration
area-ct-app
area-ct-rdp
area-ct-remoteapp
area-ct-ssh
area-ct-vnc
area-launcher
area-list
area-tags
area-teamwork
bug
chore
dependencies
general-build/ci
general-performance
general-refactor
general-security
general-supportive
general-ux
meta-documentation
meta-enhancement
meta-enhancement
meta-feature
meta-help-wanted
meta-unknown-error
priority-hi
priority-low
pull-request
question
resolution-duplicate
resolution-invalid
resolution-wontfix
stale
task-put-off
task-still-considering
task-working-in-progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/1Remote#2110
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @coooly on GitHub (Mar 16, 2022).
Original GitHub issue: https://github.com/1Remote/1Remote/issues/218
Originally assigned to: @VShawn on GitHub.
Hello !
Could it be possible to centralize accounts in settings ?
Main value will be able to change an account password in one location instead of every connection using it.
Thank you
@majkinetor commented on GitHub (Mar 16, 2022):
No, its not possible.
There is easy alternative - you can bulk edit credential by selecting multiple connections.
The only benefit of centralized editing is that you don't need to select connections which is really minor thing and you could tag all those connections easily if you want later to be able to select this group with one click.
Furthermore, if you really have lots and lots of connections and you can't find them easily, you can use sqlite query to find them since db is sqlite and can be queried trivially with something like this:
This sql searches for root (I used FOSS tool dbeaver to execute this on
premotem.db). With it, you can set username directly via SQL or add unique tag that you can later use to not mess with SQL and do bulk edit directly.Maybe we could enhance search via more keywoards to allow for this without SQL (/cc @VShawn). Currently we can search for tags with
#xyz, but maybe something likeusername: xyxcould be added eventually so less adventurous folks don't have to use SQL for huge number of connections.@majkinetor commented on GitHub (Mar 16, 2022):
Duplicate: https://github.com/VShawn/PRemoteM/issues/89
@coooly commented on GitHub (Mar 16, 2022):
Thank you. With a tag and bulk editing I can achieve easily what I was looking for. 😊