gpt4 book ai didi

ruby-on-rails - 如何在 rails3 中使用 amistad gem?

转载 作者:行者123 更新时间:2023-12-03 12:19:44 25 4
gpt4 key购买 nike

我需要有关如何在 rails3 应用程序中实现 AMISTAD gem 的帮助。请建议一些教程或观点?我看到了 github amistad 链接。但我想全面报道这颗 gem 。请帮我。

最佳答案

gem 创建者请给我发送一个如何使用 GEM 的例子试试这些,创建一个处理这些方法的友谊 Controller

class FriendshipsController < ApplicationController
before_filter :authenticate_user!

def index
@friends = current_user.friends
@pending_invited_by = current_user.pending_invited_by
@pending_invited = current_user.pending_invited
end

def create
@Friend = User.find(params[:user_id])
@friendship_created = current_user.invite(@Friend)
if @friendship_created
flash.now[:notice] = "Une demande d'amiti a t envoye #{@friend.fullname}"
end
end

def approve
@Friend = User.find(params[:user_id])
@friendship_approved = current_user.approve(@Friend)
@friends = current_user.friends
@pending_invited_by = current_user.pending_invited_by
flash.now[:notice] = "La demande d'amiti de #{@friend.fullname} a t approuve"
end

def remove
@Friend = User.find(params[:user_id])
@friendship = current_user.send(:find_any_friendship_with, @Friend)
if @friendship
@friendship.delete
@removed = true
flash.now[:notice] = "L'amiti avec #{@friend.fullname} a t supprime"
end
end
end

关于ruby-on-rails - 如何在 rails3 中使用 amistad gem?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6013720/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com