You are here

public static function Nodejs::removeChannel in Node.js integration 7

1 call to Nodejs::removeChannel()
nodejs_get_remove_channel in ./nodejs.module
Remove a channel from the Node.js server.

File

./nodejs.module, line 959

Class

Nodejs

Code

public static function removeChannel($channel) {
  $options = array(
    'method' => 'POST',
  );
  return self::httpRequest("nodejs/channel/remove/{$channel}", $options);
}