Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Alexander / alex-hunter-sales-dev

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • alex-hunter-sales-dev
  • app
  • commonReactions
  • hangup.dsl
  • Полина Бел's avatar
    правки из боевой версии: добавлены интенты, фразы, дигрессии (не подключены в олл дсл) · 9a06e399
    Полина Бел committed Oct 10, 2022
    9a06e399
hangup.dsl 421 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
library
context
{
    output serviceStatus: string?;
}

digression hangup
{
    conditions
    {
        on true tags: onclosed;
    }
    var serviceStatus = "UserHangup";
    do
    {
        $cjm.push("hangup");
        
        set $serviceStatus = digression.hangup.serviceStatus;
        //#disconnect();
        goto do_before_exit;
    }
    transitions
    {
        do_before_exit: goto do_before_exit;
    }
}