sii / siptrackweb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ability to link password categories and passwords to devices

stemid opened this issue · comments

It's already possible to associate devices with password categories or passwords using the Siptrack client API.

But it should also be possible to do using the web GUI.

Here is how it's done in the API using this repl script.

device1 = st.getOID('1771701')
category1 = st.getOID('1785430')
device1.associate(category1)

Roadmap of features required.

  • Ability to tag a password or password category using the tagging feature
  • Ability to use tagging feature to link the tagged node to a device
  • List the associated nodes on each device page with links

When linking to a password or password category, use the path display/ because it will figure out where the link needs to go without you knowing what type of node you're linking to.

Started solving this in f3b32b4.

Should be what I'm after.

  • Ability to tag a device through web gui
  • Ability to link the tagged device with a password or password category
  • A new tab in device view that shows linked passwords and password categories

I don't want the linked password objects directly in the main view because they might be mistaken for password child-objects.

I also used folder icons for the password category tables. I think this makes it more clear which are categories and which are items in many cases.