Commit 4b389221 authored by nicolas's avatar nicolas

fix(Cli): set the header as optional for

parent e35d3aeb
...@@ -186,7 +186,7 @@ Cli::Cli (QObject *parent) : QObject(parent) { ...@@ -186,7 +186,7 @@ Cli::Cli (QObject *parent) : QObject(parent) {
{ "sip-address", {} }, { "conference-id", {} } { "sip-address", {} }, { "conference-id", {} }
}); });
addCommand("join-conference", tr("joinConferenceFunctionDescription"), ::cliJoinConference, { addCommand("join-conference", tr("joinConferenceFunctionDescription"), ::cliJoinConference, {
{ "sip-address", {} }, { "conference-id", {} }, { "display-name", {} } { "sip-address", {} }, { "conference-id", {} }, { "display-name", {STRING, true } }
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment