aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2022-04-27 09:29:00 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2022-04-27 09:29:00 -0400
commit6cf8d2b298b0770b46753a902b4c5622b5b1ddd2 (patch)
tree20c7aeafcf051563f944572552553ff4dd55c426
parentff0095ff928dca78bf07148c4081191fd57f9c4d (diff)
downloadlevitating-6cf8d2b298b0770b46753a902b4c5622b5b1ddd2.tar.gz
levitating-6cf8d2b298b0770b46753a902b4c5622b5b1ddd2.zip
Added missing auth levels Fortran source.
-rw-r--r--captain/auth_level.f908
1 files changed, 8 insertions, 0 deletions
diff --git a/captain/auth_level.f90 b/captain/auth_level.f90
new file mode 100644
index 0000000..0f7ee2f
--- /dev/null
+++ b/captain/auth_level.f90
@@ -0,0 +1,8 @@
+module auth_levels
+implicit none
+
+ integer, parameter::AUTH_NONE = 0
+ integer, parameter::AUTH_NORMAL_USER = 1
+ integer, parameter::AUTH_ADMIN_USER = 10
+
+end module auth_levels