Add options for customizing session names (WIP)

This commit is contained in:
Nicolas Viennot 2019-10-20 21:23:48 -04:00
parent 4efe25d91d
commit 7f693a97ae

View File

@ -959,6 +959,24 @@ const struct options_table_entry options_table[] = {
.scope = OPTIONS_TABLE_SERVER,
.default_str = ""
},
{ .name = "tmate-account-key",
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_SERVER,
.default_str = ""
},
{ .name = "tmate-session-name",
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_SERVER,
.default_str = ""
},
{ .name = "tmate-session-name-ro",
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_SERVER,
.default_str = ""
},
#endif
{ .name = NULL }