MCPcopy Create free account
hub / github.com/aptabase/aptabase / AppsController

Method AppsController

src/Features/Apps/AppsController.cs:75–80  ·  view source on GitHub ↗
(IDbContext db, EnvSettings env, IBlobService blobService)

Source from the content-addressed store, hash-verified

73 private readonly IBlobService _blobService;
74
75 public AppsController(IDbContext db, EnvSettings env, IBlobService blobService)
76 {
77 _db = db ?? throw new ArgumentNullException(nameof(db));
78 _env = env ?? throw new ArgumentNullException(nameof(env));
79 _blobService = blobService ?? throw new ArgumentNullException(nameof(blobService));
80 }
81
82 [HttpGet("/api/_apps")]
83 public async Task<IActionResult> ListApps()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected