From da0411f5d171918c5be4264c8f750ec350333e94 Mon Sep 17 00:00:00 2001 From: kasun Date: Mon, 6 Apr 2026 11:51:03 +0200 Subject: [PATCH] corrected typo --- docs/03-Architecture/01-Login-Architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/03-Architecture/01-Login-Architecture.md b/docs/03-Architecture/01-Login-Architecture.md index 8d40aa6..3de9f40 100644 --- a/docs/03-Architecture/01-Login-Architecture.md +++ b/docs/03-Architecture/01-Login-Architecture.md @@ -6,7 +6,7 @@ The login architecture is designed to make future additions to this bridging app ## Single Table Inheritance The database entities will follow the Single Table Inheritance concept. -The databse will have one "connections" table that has all the columnns of every supported app. So in this case the table will have username, password and attachment token which are specific to Homebox. Both Homebox and WikiJs will share the token field. +The database will have one "connections" table that has all the columnns of every supported app. So in this case the table will have username, password and attachment token which are specific to Homebox. Both Homebox and WikiJs will share the token field. The entities will be organized with an abstract ConnectionEntitiy class containing the id and appUrl and the app specific entities like HomeboxEntitiy: ***ConnectionEntitiy.java***