Completed
Pull Request — develop-0.9 (#315)
by René
04:56
created
lib/Controller/ApiController.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -84,10 +84,10 @@  discard block
 block discarded – undo
84 84
 	}
85 85
 
86 86
   	/**
87
-	* @NoAdminRequired
88
-	* @NoCSRFRequired
89
-	* @return DataResponse
90
-	*/
87
+  	 * @NoAdminRequired
88
+  	 * @NoCSRFRequired
89
+  	 * @return DataResponse
90
+  	 */
91 91
 	public function getSiteUsers() {
92 92
 		$groups = $this->groupManager->search('');
93 93
 		$list = array();
@@ -114,10 +114,10 @@  discard block
 block discarded – undo
114 114
 		return new DataResponse($data, Http::STATUS_OK);
115 115
 	}
116 116
   	/**
117
-	* @NoAdminRequired
118
-	* @NoCSRFRequired
119
-	* @return Array
120
-	*/	
117
+  	 * @NoAdminRequired
118
+  	 * @NoCSRFRequired
119
+  	 * @return Array
120
+  	 */	
121 121
 	function convertAccessList($item) {
122 122
 		$split = Array();
123 123
 		if (strpos($item, 'user_') === 0) {
@@ -144,12 +144,12 @@  discard block
 block discarded – undo
144 144
 	}
145 145
 
146 146
   	/**
147
-	* @NoAdminRequired
148
-	* @NoCSRFRequired
149
-	* @PublicPage
150
-	* @param string $hash
151
-	* @return DataResponse
152
-	*/
147
+  	 * @NoAdminRequired
148
+  	 * @NoCSRFRequired
149
+  	 * @PublicPage
150
+  	 * @param string $hash
151
+  	 * @return DataResponse
152
+  	 */
153 153
 	
154 154
 	public function getPoll($hash) {
155 155
 		if (!\OC::$server->getUserSession()->getUser() instanceof IUser) {
Please login to merge, or discard this patch.