From 670b815111b4910920cde5bf122caf0da106c275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C5=81abno?= Date: Thu, 19 Dec 2024 09:26:53 +0000 Subject: [PATCH] Add Subusers feature #edit --- smsapi/Api/SubUsersFactory.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/smsapi/Api/SubUsersFactory.cs b/smsapi/Api/SubUsersFactory.cs index 2a70798..c6755a5 100644 --- a/smsapi/Api/SubUsersFactory.cs +++ b/smsapi/Api/SubUsersFactory.cs @@ -55,6 +55,15 @@ public DeleteSubuser Delete(string userId) return action; } + + public EditSubuser Edit(string userId) + { + var action = new EditSubuser(userId); + + action.Proxy(proxy); + + return action; + } } public static class SubusersFeatureRegister