94fcd0cf59
This commit includes a paydown on technical debt incurred two years ago, when I didn't know that it was bad to make custom Read and Show instances for types. As the routes need Read and Show for Transfer, which includes a Key, and deriving my own Read instance of key was not practical, I had to finally clean that up. So the compact Key read and show functions are now file2key and key2file, and Read and Show are now derived instances. Changed all code that used the old instances, compiler checked. (There were a few places, particularly in Command.Unused, and the test suite where the Show instance continue to be used for legitimate comparisons; ie show key_x == show key_y (though really in a bloom filter))
22 lines
655 B
Text
22 lines
655 B
Text
/ HomeR GET
|
|
/noscript NoScriptR GET
|
|
/noscript/auto NoScriptAutoR GET
|
|
/about AboutR GET
|
|
|
|
/config ConfigR GET
|
|
/config/repository RepositoriesR GET
|
|
/config/repository/add/drive AddDriveR GET
|
|
/config/repository/first FirstRepositoryR GET
|
|
|
|
/transfers/#NotificationId TransfersR GET
|
|
/sidebar/#NotificationId SideBarR GET
|
|
/notifier/transfers NotifierTransfersR GET
|
|
/notifier/sidebar NotifierSideBarR GET
|
|
/closealert/#AlertId CloseAlert GET
|
|
/filebrowser FileBrowserR GET POST
|
|
|
|
/transfer/pause/#Transfer PauseTransferR GET POST
|
|
/transfer/start/#Transfer StartTransferR GET POST
|
|
/transfer/cancel/#Transfer CancelTransferR GET POST
|
|
|
|
/static StaticR Static getStatic
|