diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2022-04-27 09:29:00 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2022-04-27 09:29:00 -0400 |
commit | 6cf8d2b298b0770b46753a902b4c5622b5b1ddd2 (patch) | |
tree | 20c7aeafcf051563f944572552553ff4dd55c426 /captain | |
parent | ff0095ff928dca78bf07148c4081191fd57f9c4d (diff) | |
download | levitating-6cf8d2b298b0770b46753a902b4c5622b5b1ddd2.tar.gz levitating-6cf8d2b298b0770b46753a902b4c5622b5b1ddd2.zip |
Added missing auth levels Fortran source.
Diffstat (limited to 'captain')
-rw-r--r-- | captain/auth_level.f90 | 8 |
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 |