Hi,
Would you like to get count of online users of a tenant ?
Hi,
I have tried a simple scenario.
This is my test controller
public class TestController : ZeroSupportControllerBase
{
public JsonResult GetTestData()
{
return Json(new { Name = "ismail", Age = 1 });
}
}
When i make a post request to this action (http://localhost:6240/Test/GetTestData) from postman chrome extension i get the following result.
{
"success": true,
"result": {
"name": "ismail",
"age": 1
},
"error": null,
"unAuthorizedRequest": false
}
It should work the same way with android.
Hi,
Can you share your controller action ?
Hi,
We dont have such document but your steps are correct.
By the way you can use daterangepicker in singledate mode which is already included in solution. You can check it here <a class="postlink" href="http://fragaria.github.io/angular-daterangepicker/">http://fragaria.github.io/angular-daterangepicker/</a>
Hi,
Glad to hear that your problem is solved. Thanks for the information, we will fix it <a class="postlink" href="https://github.com/aspnetboilerplate/module-zero/issues/180">https://github.com/aspnetboilerplate/mo ... issues/180</a>
Hi,
If you want "simpleLogAuditingStore will be overridden by myAuditingStore", you need to register myAuditingStore in your module's PreInitialize method. Abp registers dependencies in Initialize method of modules.
In Castle Windsor, by default first regitered dependency wins unless you use "IsDefault()". I dont remember the scenario if you use "IsDefault()" more than once, but you can test it :)
You can check it here <a class="postlink" href="https://github.com/castleproject/Windsor/blob/master/docs/whats-new-3.0.md#component-can-now-force-being-default-for-its-services-without-needing-to-be-the-first-one-registered">https://github.com/castleproject/Windso ... registered</a>
Hi,
The error you are getting is probably related to Visual Studio. Try to close and reopen visual studio and run Add-Migration code again.
Hi,
This is the expected behaviour.
Hi,
Yes you need a xml localization file. Please take a look at "Getting A Localized Text" section of localization documentation <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Localization">http://aspnetboilerplate.com/Pages/Docu ... calization</a>.
Hi,
You definition and call seems correct.
Current user might not have required permission. Can you check by calling "$state.get()" in vm.maintainParamItems to see if "parameterItems" state is registered or not ?