thedjpetersen / subway

ABANDONED - A web based IRC client
1.47k stars 152 forks source link

is it possible to change/update IRC password after initial setup? #313

Closed harishbsrinivas closed 10 years ago

harishbsrinivas commented 10 years ago

I have been evaluating the Subway IRC client for use by my team and wanted to know if it is possible to change/update IRC password after initial setup? If so how can i do this?

thedjpetersen commented 10 years ago

haven't created a way to do this yet no

hermansc commented 10 years ago

@harishbsrinivas : You could always just do it in the (Sqlite3) database directly, if you have access to it.

Lets say you call it subway.db in config.js, then:

$ sqlite3 subway.db
sqlite> UPDATE User SET password = 'foobar' WHERE username = 'zomg';

And voilà. But as thedjpetersen says, there are no way to do this as of yet in the UI.

thedjpetersen commented 10 years ago

Also there is a on-going rewrite tracked in #292 this is something that I could target to add in that.