mirror of
https://github.com/azaion/admin.git
synced 2026-06-21 21:51:10 +00:00
c7b297de83
- Deleted the deploy.cmd script as it was no longer needed. - Updated Dockerfile to include curl for health checks and added a non-root user for improved security. - Modified health check command to use curl for better reliability. - Adjusted docker-compose.test.yml to reflect changes in health check configuration. - Cleaned up appsettings.json and removed unused configuration properties. - Removed Resource entity and related requests from the codebase as part of the architectural shift. - Updated documentation to reflect the removal of hardware binding and related endpoints. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
354 B
C#
11 lines
354 B
C#
using Azaion.Common.Entities;
|
|
using LinqToDB;
|
|
using LinqToDB.Data;
|
|
|
|
namespace Azaion.Common.Database;
|
|
|
|
public class AzaionDb(DataOptions dataOptions) : DataConnection(dataOptions)
|
|
{
|
|
public ITable<User> Users => this.GetTable<User>();
|
|
public ITable<DetectionClass> DetectionClasses => this.GetTable<DetectionClass>();
|
|
} |