Base solution for your next web application

Activities of "uq"

I am planning to purchase this license so it will be valid for 1 year with latest source code suppose I purchased version 1.1 and within one year there is another release from ABP 1.2 so can I also get 1.2 from same package license?

http://prntscr.com/nwxp28

Is there any method by which I can get all notification list of current application users by admin login?

This method GetUserNotificationsAsync retrives current logged in user notifications but I need to get all user notification at admin side.

Please suggest.

Thanks it worked :)

Hi,

I want to implement a feature to delete user conversation. Suppose I have a list of users with messages and I want to clear a sepeate user thread with following operations:

Implementation steps :

  1. Add one column i.e Isdeleted in abpchat messages table.

  2. Create one method to delete chat messages for selected user so it will delete all the conversation from the user list.

  3. Fetch only those messages which are not deleted.

Please suggest.

Hello @aaron this is not the new thread as I added one question here for 2 features due to this I was sharing pending one here also as per @ismcagdas reply he suggested we can add or modify PublishAsyn method to pass one more param but this is not possible as its inbuit.

A part from this I need to sent user specific with one more id(new param) notifications in my system could you please suggest method type/name or a proper way to handle it?

Thanks,

Hello, I am able to modify chat module to send messages but not able to modify NotificationPublisher.PublishAsync method as its the inbuit method of ABP. I also added one more column in AbpTenantNotifications table but not getting proper wy to pass data with PublishAsyn method:

       await _notificationPublisher.PublishAsync(
            "App.SimpleMessage",
            new MessageNotificationData(message),
            severity: severity, 
            userIds: new[] { user }
            );
     

Here is the paramters required screen shot: http://prntscr.com/likw3h

Please suggest.

Any update?

  1. Could you debug the value of _modalManager.getArgs().extraFilters in _LookupModal.js ?

Yes, its working now. Thanks.

  1. You can use Data field in AbpTenantNotifications for additional fields.

Ok if we modify table and how to pass one more value(new column) in SendMessageAsyn method as its taking following params by default:

await _appNotifier.SendMessageAsync(
                    receiver,
                    L("PredefinedMessage"),
                    severity.ToPascalCase(CultureInfo.InvariantCulture).ToEnum<NotificationSeverity>()
                    );
       

Thanks,

Hello,

I want to pass extra filters with lookup.js model, for this I added param and pass it through the input class but its not reflecting while passing it through the request:

http://prntscr.com/lcylm8

The same data we are passing into common lookup app service--- find users method but its not reflecting value:

http://prntscr.com/lcyltz http://prntscr.com/lcylwh

A part from this I want to add one more dependancy column in AbpTenantNotifications table to pass data with SendMessageAsyn method, example one more Id but I am not able to get correct way to implement it.

Please suggest.

Showing 1 to 9 of 9 entries