There was an error while loading. Please reload this page.
1 parent 6f0121e commit 138b2a6Copy full SHA for 138b2a6
1 file changed
backend/data/src/main/kotlin/io/tolgee/service/apps/AppService.kt
@@ -52,11 +52,6 @@ class AppService(
52
return appRepository.findByAppId(appId) ?: throw AppNotRegisteredException(appId)
53
}
54
55
- @Transactional(readOnly = true)
56
- fun get(appEntityId: Long): App {
57
- return appRepository.findById(appEntityId).orElseThrow { NotFoundException(Message.APP_NOT_FOUND) }
58
- }
59
-
60
/**
61
* The app, provided [organizationId] owns it. An organization that merely installed somebody
62
* else's app must not reach it here — administering an app is the owner's alone.
0 commit comments