wip-account-creation #4

Merged
lash merged 143 commits from wip-account-creation into master 2024-08-30 14:37:58 +02:00
Showing only changes of commit 16ea648014 - Show all commits

View File

@ -220,6 +220,13 @@ func checkAccountStatus(trackingId string) (string, error) {
return status, nil
}
func (fsd *fsData) quit(ctx context.Context, sym string, input []byte) (resource.Result, error) {
return resource.Result{
Content: "",
}, nil
}
var (
scriptDir = path.Join("services", "registration")
)
@ -238,6 +245,7 @@ func main() {
ctx := context.Background()
st := state.NewState(7)
st.UseDebug()
rfs := resource.NewFsResource(scriptDir)
ca := cache.NewCache()
cfg := engine.Config{
@ -274,6 +282,7 @@ func main() {
rfs.AddLocalFunc("create_account", fs.create_account)
rfs.AddLocalFunc("check_identifier", fs.checkIdentifier)
rfs.AddLocalFunc("check_account_status", fs.check_account_status)
rfs.AddLocalFunc("quit",fs.quit)
cont, err := en.Init(ctx)
Alfred-mk marked this conversation as resolved Outdated
Outdated
Review

should error?

should error?
Outdated
Review

priority

**priority**

The switch only takes in two options, 0 or 1.
The menu remains on the select language node if an alternative input is provided

The switch only takes in two options, 0 or 1. The menu remains on the select language node if an alternative input is provided
if err != nil {