-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
AdrianBalunan
committed
Apr 21, 2026
1 parent
23f53a9
commit ec8c933
Showing
4 changed files
with
414 additions
and
494 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...papplication/src/main/java/ntnu/systemutvikling/team6/controller/AboutPageController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| package ntnu.systemutvikling.team6.controller; | ||
|
|
||
| import javafx.fxml.FXML; | ||
| import ntnu.systemutvikling.team6.controller.components.BaseController; | ||
| import ntnu.systemutvikling.team6.controller.components.FooterController; | ||
| import ntnu.systemutvikling.team6.controller.components.NavbarController; | ||
|
|
||
| public class AboutPageController extends BaseController { | ||
| @FXML private NavbarController navbarController; | ||
| @FXML private FooterController footerController; | ||
|
|
||
| @Override | ||
| protected void authTokenisSet() { | ||
| navbarController.setAuthToken(authToken); | ||
| footerController.setAuthToken(authToken); | ||
| } | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.