Base solution for your next web application

Activities of "diegorqc"

Hi,

For example i don't use the tables : AuditLogs, OrganizationUnits, Editions or features.

Hi,

I think i found a bug while i was trying to get notifications with signal IR work with my project. Because i couldn't get it work i downloaded a fresh project from aspnetboilerplate and i disabled this line inside CoreModule

Configuration.MultiTenancy.IsEnabled = true;

and notifications stop working. If i enable multitenancy again, notifications with signal IR work again. I think the problem is the implementation of this method: _realTimeNotifier.SendNotificationsAsync(Notifications). I does nothing when used in single tenant mode.

My test work was this one:

public async Task UpdateTask()
        {
            var data2 = new MessageNotificationData("The update task has started");
            var userId = new UserIdentifier(null, AbpSession.UserId ?? 1);
            _notificationPublisher.Publish("UpdateMainData", data2, userIds: new[] { userId });

            var not = _userNotificationManager.GetUserNotifications(userId);

            _realTimeNotifier.SendNotificationsAsync(not.ToArray());
        }

Thanks.

Hi, i want to know if i can delete unused ABP tables from my project. By default a lot of tables are created, but for example i wont use tenants or audit logs. So can i disable the creation of this tables? or maybe delete them after they are created? i just want to make sure i wont break ABP in the process.

Thanks,

Showing 1 to 3 of 3 entries