blastula icon indicating copy to clipboard operation
blastula copied to clipboard

view_credential_keys() possible enhancements

Open MadhulikaTanuboddi opened this issue 4 years ago • 0 comments

While testing view_credential_keys() after creating some keys, thought of following 2 enhancements when displaying the tibble with list of keys

  1. Display the tibble by sorting the id either in alphabetical or chronological order. Currently, tibble does not follow any order. Any new key added is displayed randomly in the list. May be it would be better to show the keys in chronological order?

  2. Display provider, host, port and use_ssl options in the tibble Currently, the function displayes only id, key_name and username. It would informative and helpful to display the rest of the arguments.

A sample output of view_credential_keys

> view_credential_keys()
# A tibble: 3 x 3
  id                 key_name                       username          
  <chr>              <chr>                          <chr>             
1 gmail_id_key:1     blastula-v1-gmail_id_key:1     [email protected]    
2 outlook_id_key:2   blastula-v1-outlook_id_key:2   [email protected]  
3 office365_id_key:3 blastula-v1-office365_id_key:3 [email protected]

MadhulikaTanuboddi avatar May 05 '20 22:05 MadhulikaTanuboddi