- Slack
- Discord
The Channel Plugin is a feature that helps users create spaces for conversation and communication on zuri.chat. Users can also create sub tags in the channels option where other things can be done, ranging from game nights, football banter, random, announcement and so much more. This adds the feature of having organized conversations in dedicated spaces called channels.
Benefits of Channels :
- Channels bring order and clarity to work — you can create them for any project, topic, or team
- They provide an organised, focused and centeral space for members to have conversations, share files and information.
- Increased access to shared knowledge across your workspace.
- Public channels to promote transparency and inclusivity.
- Private channels are for conversations that should not be open to all members.
- Visit the Repository to the Project on Github Website: https://github.com/zurichat/zc_plugin_channels
- Fork the repository: Click the "Fork" button on the upper right corner of the Repo page.
- Make a Local Clone: Clone the forked repository to your local machine (computer)
- Click on the "Code" button on the Repo page
- Copy the URL for the forked Repo "https://github.com/your-github-username/zc_plugin_channels.git"
- Create a Folder on your Local machine / Computer for the project Workspace
- Open Command prompt / Terminal in the same folder location
- In your Terminal, type:
git clone@https://github.com/your-github-username/zc_plugin_channels.git
- Add a Remote to Upstream to your Repo:
- In your terminal, type:
git remote add upstream https://github.com/Valenteeena/zc_plugin_channels
- In your terminal, type:
- Pull from upstream to download all changes in the project using
git pull upstream develop
- Open the Project up in your code Editor
- Complete your assigned task / Feature on your local machine.
- When you are ready to add and push your feature / task to the Repo,
- Create a new branch with your feature / task name you are adding e.g "ft-Add new channel". To do this, type:
git checkout -b ft-Add new channel
- Add your changes using:
git add .
- Commit your changes to the branch with a message using
git commit -m "Commit message"
- Create a new branch with your feature / task name you are adding e.g "ft-Add new channel". To do this, type:
- * Note: if the Feature is a bug fix, use
bug:message
for your branch and commit message
- To make sure there are no conflict, Pull from upstream using
git pull upstream develop
- Push your branch changes to the Repo using
git push origin "ft-yourTask"
- Once you push the changes to your repo, the
Compare & pull request
button will appear in GitHub page of your repo. - Click the button and make your request. Leave a comment in your request
- Click Create pull request to open a new pull request