Subversion Repository Public Repository

emr_demo

Diff Revisions 3 vs 4 for /web_emr - Copy/src/main/java/com/bestray/config/WebSecurityConfig.java

Diff revisions: vs.
  @@ -85,14 +85,25 @@
85 85 .antMatchers("/department/create").permitAll()
86 86 .antMatchers("/department/update/**").permitAll()
87 87 .antMatchers("/department/delete/**").permitAll()
88 + .antMatchers("/department/search").permitAll()
88 89 .antMatchers("/speciality/create").permitAll()
89 90 .antMatchers("/speciality/update/**").permitAll()
90 91 .antMatchers("/speciality/delete/**").permitAll()
92 + .antMatchers("/speciality/search").permitAll()
91 93 .antMatchers("/pharmacy/create").permitAll()
92 94 .antMatchers("/pharmacy/update/**").permitAll()
93 95 .antMatchers("/pharmacy/delete/**").permitAll()
96 + .antMatchers("/pharmacy/search").permitAll()
97 + .antMatchers("/lab/create").permitAll()
98 + .antMatchers("/lab/update/**").permitAll()
99 + .antMatchers("/lab/delete/**").permitAll()
100 + .antMatchers("/lab/search").permitAll()
101 + .antMatchers("/expenditure/create").permitAll()
102 + .antMatchers("/expenditure/update/**").permitAll()
103 + .antMatchers("/expenditure/delete/**").permitAll()
104 + .antMatchers("/expenditure/search").permitAll()
94 105
95 -
106 +
96 107
97 108
98 109 .anyRequest().authenticated();