Skip to content

Commit

Permalink
fix: additional brackets in namespaces for enrollment
Browse files Browse the repository at this point in the history
  • Loading branch information
Xlin123 committed Oct 2, 2024
1 parent 690da36 commit c90f999
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static AtsignStatus Status(string atsign)
}

private static readonly string AppName = "noports_win";
private static readonly List<string> Namespaces = ["{sshnp: rw, sshrvd: rw}", "{sshrvd: rw, sshnp: rw}"];
private static readonly List<string> Namespaces = ["sshnp: rw, sshrvd: rw", "sshrvd: rw, sshnp: rw"];

public static bool Enroll(string otp)
{
Expand Down Expand Up @@ -140,7 +140,6 @@ public static List<EnrollmentRecord> ListEnrollments()
EnrollmentRecord record = new(parts[0], parts[3]);
lines.Add(record);
}

return lines;
}

Expand Down

0 comments on commit c90f999

Please sign in to comment.